System.Web.Configuration.HttpCapabilitiesBase.ReadBoolean C# (CSharp) Method

ReadBoolean() private method

private ReadBoolean ( string key ) : bool
key string
return bool
		bool ReadBoolean (string key)
		{
			string v = this [key];
			if (v == null) {
				throw CreateCapabilityNotFoundException (key);
			}

			return (String.Compare (v, "True", true, Helpers.InvariantCulture) == 0);
		}