System.Web.HttpServerUtility.CreateObject C# (CSharp) Method

CreateObject() private method

private CreateObject ( Type type ) : object
type System.Type
return object
		public object CreateObject (Type type)
		{
			throw new HttpException (500, "COM is not supported");
		}

Same methods

HttpServerUtility::CreateObject ( string progID ) : object

Usage Example

Example #1
0
 public override object CreateObject(string progID)
 {
     return(w.CreateObject(progID));
 }
All Usage Examples Of System.Web.HttpServerUtility::CreateObject