System.Security.Policy.MonoTrustManager.FromXml C# (CSharp) Method

FromXml() public method

public FromXml ( SecurityElement e ) : void
e System.Security.SecurityElement
return void
		public void FromXml (SecurityElement e)
		{
			if (e == null)
				throw new ArgumentNullException ("e");
			if (e.Tag != tag)
				throw new ArgumentException ("e", Locale.GetText ("Invalid XML tag."));
			// nothing more to do in this case
		}