| EncryptionTypeTryParse Method |
Converts the string representation of an encryption type to its encryption type equivalent.
A return value indicates whether the conversion succeeded.
Namespace: ObujekutoruAssembly: obujekutoru (in obujekutoru.dll) Version: 1.1.0.25794
Syntax public static bool TryParse(
string encryptionTypeString,
out EncryptionType encryptionType
)
Public Shared Function TryParse (
encryptionTypeString As String,
<OutAttribute> ByRef encryptionType As EncryptionType
) As Boolean
public:
static bool TryParse(
String^ encryptionTypeString,
[OutAttribute] EncryptionType^% encryptionType
)
static member TryParse :
encryptionTypeString : string *
encryptionType : EncryptionType byref -> bool
Parameters
- encryptionTypeString
- Type: SystemString
A string containing an encryption type to convert. - encryptionType
- Type: ObujekutoruEncryptionType
An encryption type equivalent to the string.
Return Value
Type:
Booleantrue if the string was converted successfully; otherwise, false.
See Also