System.AppDomain.AppDomain.ApplyPolicy C# (CSharp) Method

ApplyPolicy() private method

private ApplyPolicy ( string assemblyName ) : string
assemblyName string
return string
		public string ApplyPolicy (string assemblyName)
		{
			if (assemblyName == null)
				throw new ArgumentNullException ("assemblyName");
			if (assemblyName.Length == 0) // String.Empty
				throw new ArgumentException ("assemblyName");
			return assemblyName;
		}