System.Reflection.Assembly.Assembly.LoadFile C# (CSharp) Method

LoadFile() public static method

public static LoadFile ( String path, Evidence securityEvidence ) : Assembly
path String
securityEvidence System.Security.Policy.Evidence
return Assembly
		public static Assembly LoadFile (String path, Evidence securityEvidence)
		{
			if (path == null)
				throw new ArgumentNullException ("path");
			if (path == String.Empty)
				throw new ArgumentException ("Path can't be empty", "path");
			// FIXME: Make this do the right thing
			return LoadFrom (path, securityEvidence);
		}

Same methods

Assembly.Assembly::LoadFile ( String path ) : Assembly