System.Security.Policy.DefaultPolicies.ReservedNames.DefaultPolicies.ReservedNames.IsReserved C# (CSharp) Method

IsReserved() static public method

static public IsReserved ( string name ) : bool
name string
return bool
			static public bool IsReserved (string name) 
			{
				switch (name) {
				case FullTrust:
				case LocalIntranet:
				case Internet:
				case SkipVerification:
				case Execution:
				case Nothing:
				case Everything:
					return true;
				default:
					return false;
				}
			}
		}
DefaultPolicies.ReservedNames.DefaultPolicies.ReservedNames