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

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

private BuildRequestUriUsingCookedPath ( ) : void
Результат void
        private void BuildRequestUriUsingCookedPath()
        {
            bool isValid = Uri.TryCreate(_cookedUriScheme + Uri.SchemeDelimiter + _cookedUriHost + _cookedUriPath +
                _cookedUriQuery, UriKind.Absolute, out _requestUri);

            // Creating a Uri from the cooked Uri should really always work: If not, we log at least.
            if (!isValid)
            {
                if (NetEventSource.IsEnabled) NetEventSource.Error(this,
                    SR.Format(SR.net_log_listener_cant_create_uri, _cookedUriScheme, _cookedUriHost, _cookedUriPath, _cookedUriQuery));
            }
        }