System.Web.Configuration.MachineKeySection.GetDecryptionKey C# (CSharp) Method

GetDecryptionKey() private method

private GetDecryptionKey ( ) : byte[]
return byte[]
		internal byte [] GetDecryptionKey ()
		{
			if (decryption_key == null)
				SetDecryptionKey (DecryptionKey);
			return decryption_key;
		}

Usage Example

Example #1
0
		static byte[] GetDecryptionKey (MachineKeySection section)
		{
			return section.GetDecryptionKey ();
		}