System.Net.HttpListenerRequestUriBuilder.BuildRequestUriUsingRawPath C# (CSharp) Метод

BuildRequestUriUsingRawPath() приватный Метод

private BuildRequestUriUsingRawPath ( ) : void
Результат void
        private void BuildRequestUriUsingRawPath()
        {
            bool isValid = false;

            // Initialize 'rawPath' only if really needed; i.e. if we build the request Uri from the raw Uri.
            _rawPath = GetPath(_rawUri);

            // Try to check the raw path using first the primary encoding (according to http.sys settings);
            // if it fails try the secondary encoding.
            ParsingResult result = BuildRequestUriUsingRawPath(GetEncoding(EncodingType.Primary));
            if (result == ParsingResult.EncodingError)
            {
                Encoding secondaryEncoding = GetEncoding(EncodingType.Secondary);
                result = BuildRequestUriUsingRawPath(secondaryEncoding);
            }
            isValid = (result == ParsingResult.Success) ? true : false;

            // Log that we weren't able to create a Uri from the raw string.
            if (!isValid)
            {
                if (NetEventSource.IsEnabled) NetEventSource.Error(this,
                    SR.Format(SR.net_log_listener_cant_create_uri, _cookedUriScheme, _cookedUriHost, _rawPath, _cookedUriQuery));
            }
        }

Same methods

HttpListenerRequestUriBuilder::BuildRequestUriUsingRawPath ( Encoding encoding ) : ParsingResult