Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Net / System / Net / _NetRes.cs / 1 / _NetRes.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { using System.Diagnostics; using System.Globalization; internal class NetRes { /*++ Constructor This is the constructor, marked private because this class shouldn't be instantiated. --*/ private NetRes() { } /*++ GetWebStatusString - Get a WebExceptionStatus-specific resource string This method takes an input string and a WebExceptionStatus. We use the input string as a key to find a status message and the webStatus to produce a status-specific message, then we combine the two. Input: Res - Id for resource string. Status - The WebExceptionStatus to be formatted. Returns: string for localized message. --*/ public static string GetWebStatusString(string Res, WebExceptionStatus Status) { string Msg; string StatusMsg; StatusMsg = SR.GetString(WebExceptionMapping.GetWebStatusString(Status)); // Get the base status. Msg = SR.GetString(Res); // Format the status specific message into the base status and return // that return String.Format(CultureInfo.CurrentCulture, Msg, StatusMsg); } public static string GetWebStatusString(WebExceptionStatus Status) { return SR.GetString(WebExceptionMapping.GetWebStatusString(Status)); } /*++ GetWebStatusCodeString - Get a StatusCode-specific resource string This method is used to map a HTTP status code to a specific user readable error code. Input: statusCode - Id for resource string. Status - The WebExceptionStatus to be formatted. Returns: string for localized message. --*/ public static string GetWebStatusCodeString(HttpStatusCode statusCode, string statusDescription) { string webStatusCode = "(" + ((int)statusCode).ToString(NumberFormatInfo.InvariantInfo) + ")"; string statusMessage = null; // // Now combine the label with the base enum key and look up the status msg. // try { // // convert the HttpStatusCode to its label and look it up. // statusMessage = SR.GetString("net_httpstatuscode_" + statusCode.ToString(), null); } catch { } if (statusMessage!=null && statusMessage.Length>0) { webStatusCode += " " + statusMessage; } else { // // Otherwise try to map the base status. // if (statusDescription!=null && statusDescription.Length>0) { webStatusCode += " " + statusDescription; } } return webStatusCode; } public static string GetWebStatusCodeString(FtpStatusCode statusCode, string statusDescription) { string webStatusCode = "(" + ((int)statusCode).ToString(NumberFormatInfo.InvariantInfo) + ")"; string statusMessage = null; // // Now combine the label with the base enum key and look up the status msg. // try { // // convert the HttpStatusCode to its label and look it up. // statusMessage = SR.GetString("net_ftpstatuscode_" + statusCode.ToString(), null); } catch { } if (statusMessage!=null && statusMessage.Length>0) { webStatusCode += " " + statusMessage; } else { // // Otherwise try to map the base status. // if (statusDescription!=null && statusDescription.Length>0) { webStatusCode += " " + statusDescription; } } return webStatusCode; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { using System.Diagnostics; using System.Globalization; internal class NetRes { /*++ Constructor This is the constructor, marked private because this class shouldn't be instantiated. --*/ private NetRes() { } /*++ GetWebStatusString - Get a WebExceptionStatus-specific resource string This method takes an input string and a WebExceptionStatus. We use the input string as a key to find a status message and the webStatus to produce a status-specific message, then we combine the two. Input: Res - Id for resource string. Status - The WebExceptionStatus to be formatted. Returns: string for localized message. --*/ public static string GetWebStatusString(string Res, WebExceptionStatus Status) { string Msg; string StatusMsg; StatusMsg = SR.GetString(WebExceptionMapping.GetWebStatusString(Status)); // Get the base status. Msg = SR.GetString(Res); // Format the status specific message into the base status and return // that return String.Format(CultureInfo.CurrentCulture, Msg, StatusMsg); } public static string GetWebStatusString(WebExceptionStatus Status) { return SR.GetString(WebExceptionMapping.GetWebStatusString(Status)); } /*++ GetWebStatusCodeString - Get a StatusCode-specific resource string This method is used to map a HTTP status code to a specific user readable error code. Input: statusCode - Id for resource string. Status - The WebExceptionStatus to be formatted. Returns: string for localized message. --*/ public static string GetWebStatusCodeString(HttpStatusCode statusCode, string statusDescription) { string webStatusCode = "(" + ((int)statusCode).ToString(NumberFormatInfo.InvariantInfo) + ")"; string statusMessage = null; // // Now combine the label with the base enum key and look up the status msg. // try { // // convert the HttpStatusCode to its label and look it up. // statusMessage = SR.GetString("net_httpstatuscode_" + statusCode.ToString(), null); } catch { } if (statusMessage!=null && statusMessage.Length>0) { webStatusCode += " " + statusMessage; } else { // // Otherwise try to map the base status. // if (statusDescription!=null && statusDescription.Length>0) { webStatusCode += " " + statusDescription; } } return webStatusCode; } public static string GetWebStatusCodeString(FtpStatusCode statusCode, string statusDescription) { string webStatusCode = "(" + ((int)statusCode).ToString(NumberFormatInfo.InvariantInfo) + ")"; string statusMessage = null; // // Now combine the label with the base enum key and look up the status msg. // try { // // convert the HttpStatusCode to its label and look it up. // statusMessage = SR.GetString("net_ftpstatuscode_" + statusCode.ToString(), null); } catch { } if (statusMessage!=null && statusMessage.Length>0) { webStatusCode += " " + statusMessage; } else { // // Otherwise try to map the base status. // if (statusDescription!=null && statusDescription.Length>0) { webStatusCode += " " + statusDescription; } } return webStatusCode; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- _ListenerRequestStream.cs
- AnonymousIdentificationSection.cs
- Figure.cs
- DomainConstraint.cs
- CodeBlockBuilder.cs
- LinqDataSourceEditData.cs
- TableHeaderCell.cs
- WebPartConnectionsConfigureVerb.cs
- VoiceSynthesis.cs
- VirtualPathProvider.cs
- _DomainName.cs
- RPIdentityRequirement.cs
- XamlTreeBuilder.cs
- SettingsContext.cs
- HwndHost.cs
- ExtractorMetadata.cs
- AdvancedBindingPropertyDescriptor.cs
- WmpBitmapEncoder.cs
- IsolatedStorageFileStream.cs
- ModuleConfigurationInfo.cs
- WindowsFont.cs
- UxThemeWrapper.cs
- DownloadProgressEventArgs.cs
- DictionaryBase.cs
- RepeaterCommandEventArgs.cs
- _ChunkParse.cs
- BitmapMetadataEnumerator.cs
- ConfigurationConverterBase.cs
- COAUTHIDENTITY.cs
- COM2IProvidePropertyBuilderHandler.cs
- CompositeFontInfo.cs
- SelectionProcessor.cs
- AttributeAction.cs
- LicenseManager.cs
- ObjRef.cs
- ClassData.cs
- SystemIPGlobalProperties.cs
- TypeSystem.cs
- CodeNamespaceImportCollection.cs
- Int32Animation.cs
- PointAnimationClockResource.cs
- CngAlgorithmGroup.cs
- WindowsTooltip.cs
- ConditionalAttribute.cs
- XmlReaderDelegator.cs
- TTSEngineTypes.cs
- TdsParser.cs
- IIS7ConfigurationLoader.cs
- CommandHelper.cs
- WebEvents.cs
- EditorPartCollection.cs
- HttpCachePolicy.cs
- Comparer.cs
- DesignerActionTextItem.cs
- WinFormsSecurity.cs
- XmlDataLoader.cs
- CopyAttributesAction.cs
- CopyAction.cs
- NodeInfo.cs
- ConfigurationStrings.cs
- DbgCompiler.cs
- GridViewRowPresenter.cs
- AsyncPostBackTrigger.cs
- DataPagerFieldItem.cs
- DispatcherOperation.cs
- PixelFormat.cs
- GridViewDeleteEventArgs.cs
- Vector3D.cs
- TiffBitmapEncoder.cs
- WizardStepBase.cs
- BinaryUtilClasses.cs
- XmlAtomicValue.cs
- ColorTransformHelper.cs
- ImageAutomationPeer.cs
- InternalSafeNativeMethods.cs
- Graph.cs
- CfgArc.cs
- DesignerActionTextItem.cs
- Activity.cs
- HideDisabledControlAdapter.cs
- InvokeFunc.cs
- CqlQuery.cs
- VSWCFServiceContractGenerator.cs
- TextComposition.cs
- FileDialog_Vista.cs
- ServiceMoniker.cs
- DataGridViewElement.cs
- TableLayoutSettings.cs
- SqlConnectionString.cs
- RtfNavigator.cs
- CompiledAction.cs
- ToolBarButton.cs
- InvalidAsynchronousStateException.cs
- KoreanCalendar.cs
- DragCompletedEventArgs.cs
- PropertiesTab.cs
- SemanticBasicElement.cs
- IList.cs
- RegexCompiler.cs
- WindowsAuthenticationEventArgs.cs