Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / WebExceptionStatus.cs / 1 / WebExceptionStatus.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { ////// public enum WebExceptionStatus { ////// Specifies the status of a network request. /// ////// Success = 0, ////// No error was encountered. /// ////// NameResolutionFailure = 1, ////// The name resolver service could not resolve the host name. /// ////// ConnectFailure = 2, ////// The remote service point could not be contacted at the transport level. /// ////// ReceiveFailure = 3, ////// A complete response was not received from the remote server. /// ////// SendFailure = 4, ////// A complete request could not be sent to the remote server. /// ////// /// PipelineFailure = 5, ////// RequestCanceled = 6, ////// The request was cancelled. /// ////// ProtocolError = 7, ////// The response received from the server was complete but indicated a /// protocol-level error. For example, an HTTP protocol error such as 401 Access /// Denied would use this status. /// ////// ConnectionClosed = 8, ////// The connection was prematurely closed. /// ////// TrustFailure = 9, ////// A server certificate could not be validated. /// ////// SecureChannelFailure = 10, ////// An error occurred in a secure channel link. /// ////// ServerProtocolViolation = 11, ///[To be supplied.] ////// KeepAliveFailure = 12, ///[To be supplied.] ////// Pending = 13, ///[To be supplied.] ////// Timeout = 14, ///[To be supplied.] ////// ProxyNameResolutionFailure = 15, ////// Similar to NameResolution Failure, but for proxy failures. /// ////// UnknownError = 16, ///[To be supplied.] ////// MessageLengthLimitExceeded = 17, // // A request could be served from Cache but was not found and effective CachePolicy=CacheOnly // CacheEntryNotFound = 18, // // A request is not suitable for caching and effective CachePolicy=CacheOnly // RequestProhibitedByCachePolicy = 19, // // The proxy script (or other proxy logic) declined to provide proxy info, effectively blocking the request. // RequestProhibitedByProxy = 20, // !! If new values are added, increase the size of the s_Mapping array below to the largest value + 1. }; // enum WebExceptionStatus // Mapping from enum value to error message. internal static class WebExceptionMapping { private static readonly string[] s_Mapping = new string[21]; internal static string GetWebStatusString(WebExceptionStatus status) { int statusInt = (int) status; if (statusInt >= s_Mapping.Length || statusInt < 0) { throw new InternalException(); } string message = s_Mapping[statusInt]; if (message == null) { message = "net_webstatus_" + status.ToString(); s_Mapping[statusInt] = message; } return message; } } } // namespace System.Net/// Sending the request to the server or receiving the response from it, /// required handling a message that exceeded the specified limit. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AssemblySettingAttributes.cs
- SizeAnimationBase.cs
- LinqDataSourceDisposeEventArgs.cs
- SQLChars.cs
- BuildProvidersCompiler.cs
- ClientScriptManagerWrapper.cs
- FamilyTypeface.cs
- FontWeightConverter.cs
- TextEffect.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- BoundPropertyEntry.cs
- ZipIOCentralDirectoryFileHeader.cs
- XPathSelfQuery.cs
- ContextMenuService.cs
- DataDocumentXPathNavigator.cs
- BindValidationContext.cs
- Quaternion.cs
- ArcSegment.cs
- PropertyValueUIItem.cs
- TableLayoutSettings.cs
- SharedPerformanceCounter.cs
- CryptoApi.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SafeLibraryHandle.cs
- RegexGroup.cs
- wgx_render.cs
- WorkflowApplicationTerminatedException.cs
- QueryableDataSourceHelper.cs
- ComponentDispatcherThread.cs
- XmlSyndicationContent.cs
- UnauthorizedWebPart.cs
- COAUTHIDENTITY.cs
- RenderData.cs
- AdCreatedEventArgs.cs
- VarRefManager.cs
- ListViewGroupConverter.cs
- UIntPtr.cs
- MimeWriter.cs
- SessionPageStatePersister.cs
- XmlBinaryWriter.cs
- PropertyMetadata.cs
- DragDeltaEventArgs.cs
- WebEvents.cs
- LoginCancelEventArgs.cs
- BindToObject.cs
- AuthStoreRoleProvider.cs
- SingleKeyFrameCollection.cs
- ConstNode.cs
- WSHttpSecurityElement.cs
- InstanceDescriptor.cs
- Image.cs
- ConfigLoader.cs
- ClosureBinding.cs
- StrictModeSecurityHeaderElementInferenceEngine.cs
- BufferModeSettings.cs
- NativeRecognizer.cs
- followingquery.cs
- TextTreeDeleteContentUndoUnit.cs
- DataGridCommandEventArgs.cs
- PrintController.cs
- DoubleCollectionConverter.cs
- SqlMethods.cs
- ProjectedSlot.cs
- BitmapFrame.cs
- PointLightBase.cs
- Inflater.cs
- RootProjectionNode.cs
- TreeNodeConverter.cs
- OdbcCommandBuilder.cs
- DoubleIndependentAnimationStorage.cs
- WpfXamlLoader.cs
- EncoderParameters.cs
- InfoCardProofToken.cs
- TypeForwardedToAttribute.cs
- IgnorePropertiesAttribute.cs
- DbSetClause.cs
- WCFModelStrings.Designer.cs
- PaintValueEventArgs.cs
- FileDialogCustomPlace.cs
- MetadataPropertyCollection.cs
- _ConnectOverlappedAsyncResult.cs
- TimeoutException.cs
- DataGridColumnCollection.cs
- ListItemCollection.cs
- DesignerTransaction.cs
- ToolBar.cs
- RuleConditionDialog.cs
- ParameterSubsegment.cs
- InstanceContextManager.cs
- SrgsSubset.cs
- Rotation3DAnimationBase.cs
- XmlHelper.cs
- DiscoveryDocumentReference.cs
- GroupStyle.cs
- AuthenticateEventArgs.cs
- RectValueSerializer.cs
- XmlSchemaDocumentation.cs
- NumericUpDownAcceleration.cs
- Relationship.cs
- AssociatedControlConverter.cs