Gets or sets the mode for operation of the symmetric algorithm.

Namespace: LLCryptoLib.Security.Cryptography
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public override CipherMode Mode { get; set; }
Visual Basic
Public Overrides Property Mode As CipherMode
	Get
	Set
Visual C++
public:
virtual property CipherMode Mode {
	CipherMode get () override;
	void set (CipherMode value) override;
}

Field Value

The mode for operation of the symmetric algorithm.

Remarks

See CipherMode for a description of specific modes.

Exceptions

ExceptionCondition
System.Security.Cryptography..::..CryptographicExceptionThe cipher mode is not one of the CipherMode values.

See Also