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

CreateObject() private method

private CreateObject ( string progID ) : object
progID string
return object
		public object CreateObject (string progID)
		{
			throw new HttpException (500, "COM is not supported");
		}

Same methods

HttpServerUtility::CreateObject ( Type type ) : object

Usage Example

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