SetWebEventCode() 개인적인 메소드

private SetWebEventCode ( int webEventCode ) : void
webEventCode int
리턴 void
예제 #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);
        }
예제 #2
0
        internal static HttpException NewWithCode(int httpCode, string message, string resourceName, int webEventCode)
        {
            var ret = new HttpException(httpCode, message, resourceName);

            ret.SetWebEventCode(webEventCode);

            return(ret);
        }
예제 #3
0
        internal static HttpException NewWithCode(string message, int webEventCode)
        {
            var ret = new HttpException(message);

            ret.SetWebEventCode(webEventCode);

            return(ret);
        }
예제 #4
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;
		}
예제 #5
0
		internal static HttpException NewWithCode (int httpCode, string message, string resourceName, int webEventCode)
		{
			var ret = new HttpException (httpCode, message, resourceName);
			ret.SetWebEventCode (webEventCode);

			return ret;
		}
예제 #6
0
		internal static HttpException NewWithCode (string message, int webEventCode)
		{
			var ret = new HttpException (message);
			ret.SetWebEventCode (webEventCode);

			return ret;
		}