System.Web.Compilation.TagAttributes.CheckServerKey C# (CSharp) Method

CheckServerKey() private method

private CheckServerKey ( object key ) : void
key object
return void
		void CheckServerKey (object key)
		{
			if (key == null || ((string)key).Length == 0)
				throw new HttpException ("The server tag is not well formed.");
		}
	}