System.Security.Cryptography.ToBase64Transform.Clear C# (CSharp) Метод

Clear() публичный Метод

public Clear ( ) : void
Результат void
        public void Clear()
        {
            Dispose(true);
            GC.SuppressFinalize(this);
        }

Usage Example

Пример #1
0
		public void TransformBlock_Dispose () 
		{
			byte[] input = new byte [3];
			byte[] output = new byte [4];
			ToBase64Transform t = new ToBase64Transform ();
			t.Clear ();
			t.TransformBlock (input, 0, input.Length, output, 0);
		}
All Usage Examples Of System.Security.Cryptography.ToBase64Transform::Clear