Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- OpCopier.cs
- InkCanvasSelection.cs
- HTTPNotFoundHandler.cs
- FormViewInsertedEventArgs.cs
- Literal.cs
- XPathCompileException.cs
- ConfigXmlAttribute.cs
- XmlSerializerVersionAttribute.cs
- CompensatableTransactionScopeActivity.cs
- ExpandCollapsePattern.cs
- XmlSchemaGroupRef.cs
- SQLDateTimeStorage.cs
- DefaultMemberAttribute.cs
- MsmqIntegrationSecurityMode.cs
- Site.cs
- Part.cs
- BamlLocalizabilityResolver.cs
- ForceCopyBuildProvider.cs
- QueryInterceptorAttribute.cs
- ResourceReader.cs
- ThreadNeutralSemaphore.cs
- SqlConnectionPoolGroupProviderInfo.cs
- SectionInformation.cs
- Validator.cs
- AsyncPostBackTrigger.cs
- XmlILIndex.cs
- FastEncoder.cs
- ParameterCollection.cs
- Typeface.cs
- ThreadInterruptedException.cs
- FormatSettings.cs
- ProfileService.cs
- EventsTab.cs
- IfAction.cs
- AttachedPropertyMethodSelector.cs
- CalendarDay.cs
- ReaderWriterLock.cs
- StringFunctions.cs
- FunctionImportMapping.cs
- DesignerAutoFormat.cs
- DefaultSection.cs
- Timer.cs
- ColumnResizeAdorner.cs
- ThreadStartException.cs
- GridViewDeletedEventArgs.cs
- DropDownHolder.cs
- DrawingBrush.cs
- GridViewDeletedEventArgs.cs
- Model3DCollection.cs
- XmlNodeReader.cs
- InstanceHandleConflictException.cs
- ContainerSelectorGlyph.cs
- TimeSpanOrInfiniteConverter.cs
- DataGridViewCellCollection.cs
- ModulesEntry.cs
- LostFocusEventManager.cs
- PanelDesigner.cs
- securitymgrsite.cs
- TopClause.cs
- FilterQuery.cs
- ListItemParagraph.cs
- Expr.cs
- DecimalAverageAggregationOperator.cs
- TextModifierScope.cs
- ActivityStateRecord.cs
- ApplicationSettingsBase.cs
- IListConverters.cs
- HttpServerVarsCollection.cs
- EdgeModeValidation.cs
- Queue.cs
- SendKeys.cs
- DbRetry.cs
- AsmxEndpointPickerExtension.cs
- ResourceExpression.cs
- LabelEditEvent.cs
- PageMediaType.cs
- RuntimeHandles.cs
- ISAPIWorkerRequest.cs
- ResourceBinder.cs
- XmlSchemaSimpleTypeRestriction.cs
- UITypeEditors.cs
- ProfessionalColors.cs
- UniformGrid.cs
- BackgroundWorker.cs
- WeakRefEnumerator.cs
- WindowHideOrCloseTracker.cs
- EditorPartChrome.cs
- WebScriptMetadataInstanceContextProvider.cs
- UriParserTemplates.cs
- AmbientProperties.cs
- WorkflowInlining.cs
- RoutingSection.cs
- AsyncContentLoadedEventArgs.cs
- SqlReferenceCollection.cs
- RepeaterCommandEventArgs.cs
- VoiceChangeEventArgs.cs
- ConfigurationSchemaErrors.cs
- UnsafeNativeMethods.cs
- WinInet.cs
- EventHandlerList.cs