CrypterOptions.TryGetValue Method

CryptSharp

CrypterOptionsTryGetValue Method CryptSharp
Gets the value of an option, if the option is set.

Namespace: CryptSharp
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.1.0.0
Syntax

public bool TryGetValue(
	CrypterOptionKey key,
	out Object value
)
Public Function TryGetValue ( 
	key As CrypterOptionKey,
	<OutAttribute> ByRef value As Object
) As Boolean
public:
bool TryGetValue(
	CrypterOptionKey^ key, 
	[OutAttribute] Object^% value
)
member TryGetValue : 
        key : CrypterOptionKey * 
        value : Object byref -> bool 

Parameters

key
Type: CryptSharpCrypterOptionKey
The key of the option.
value
Type: SystemObject
The value, or null if the option is not set.

Return Value

Type: Boolean
true if the option is set.
See Also

Reference