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

GetValidationKey() private method

private GetValidationKey ( ) : byte[]
return byte[]
		internal byte [] GetValidationKey ()
		{
			if (validation_key == null)
				SetValidationKey (ValidationKey);
			return validation_key;
		}

Usage Example

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