System.Web.HttpException.SetWebEventCode C# (CSharp) 메소드

SetWebEventCode() 개인적인 메소드

private SetWebEventCode ( int webEventCode ) : void
webEventCode int
리턴 void
		internal void SetWebEventCode (int webEventCode)
		{
			this.webEventCode = webEventCode;
		}
		

Usage Example

예제 #1
0
        internal static HttpException NewWithCode(int httpCode, string message, Exception innerException, int webEventCode)
        {
            var ret = new HttpException(httpCode, message, innerException);

            ret.SetWebEventCode(webEventCode);

            return(ret);
        }
All Usage Examples Of System.Web.HttpException::SetWebEventCode