 | CSYSDecryptString Method (CGXNETCore, String, String, Int32) |
Decrypts a string that has been previously encrypted by EncryptString_SYS.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void DecryptString(
CGXNETCore gxNetShared,
string input,
ref string output,
int key
)
public static void DecryptString(
CGXNETCore gxNetShared,
string input,
ref string output,
int key
)
Public Shared Sub DecryptString (
gxNetShared As CGXNETCore,
input As String,
ByRef output As String,
key As Integer
)
Public Shared Sub DecryptString (
gxNetShared As CGXNETCore,
input As String,
ByRef output As String,
key As Integer
)
public:
static void DecryptString(
CGXNETCore^ gxNetShared,
String^ input,
String^% output,
int key
)
public:
static void DecryptString(
CGXNETCore^ gxNetShared,
String^ input,
String^% output,
int key
)
static member DecryptString :
gxNetShared : CGXNETCore *
input : string *
output : string byref *
key : int -> unit
static member DecryptString :
gxNetShared : CGXNETCore *
input : string *
output : string byref *
key : int -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - input
- Type: SystemString
Input string for decryption. - output
- Type: SystemString
Output buffer for decrypted result. - key
- Type: SystemInt32
<define>SYS_ENCRYPTION_KEY</define>
See Also