Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / DataServiceClientException.cs / 1 / DataServiceClientException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Exception class for server errors. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Security.Permissions; ////// The exception that is thrown when the server returns an error. /// #if !ASTORIA_LIGHT [Serializable] #endif [System.Diagnostics.DebuggerDisplay("{Message}")] public sealed class DataServiceClientException : InvalidOperationException { ///status code as returned by the server. private readonly int statusCode; #region Constructors. ////// Creates a new instance of DataServiceQueryException. /// public DataServiceClientException() : this(Strings.DataServiceException_GeneralError) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. public DataServiceClientException(string message) : this(message, null) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. public DataServiceClientException(string message, Exception innerException) : this(message, innerException, 500) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// status code as returned by the server. public DataServiceClientException(string message, int statusCode) : this(message, null, statusCode) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. /// status code as returned by the server. public DataServiceClientException(string message, Exception innerException, int statusCode) : base(message, innerException) { this.statusCode = statusCode; } #if !ASTORIA_LIGHT #pragma warning disable 0628 ////// Initializes a new instance of the DataServiceQueryException class from the /// specified SerializationInfo and StreamingContext instances. /// /// /// A SerializationInfo containing the information required to serialize /// the new DataServiceQueryException. /// /// A StreamingContext containing the source of the serialized stream /// associated with the new DataServiceQueryException. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1047", Justification = "Follows serialization info pattern.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032", Justification = "Follows serialization info pattern.")] protected DataServiceClientException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context) : base(serializationInfo, context) { if (serializationInfo != null) { this.statusCode = serializationInfo.GetInt32("statusCode"); } } #pragma warning restore 0628 #endif #endregion Constructors. #region Public properties. ///Error code to be used in payloads. public int StatusCode { get { return this.statusCode; } } #endregion Public properties. #region Methods. #if !ASTORIA_LIGHT ////// Sets the SerializationInfo with information about the exception. /// /// The SerializationInfo that holds the serialized object data about the exception being thrown. /// The StreamingContext that contains contextual information about the source or destination. [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { if (info != null) { info.AddValue("statusCode", this.statusCode); } base.GetObjectData(info, context); } #endif #endregion Methods. } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Exception class for server errors. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Security.Permissions; ////// The exception that is thrown when the server returns an error. /// #if !ASTORIA_LIGHT [Serializable] #endif [System.Diagnostics.DebuggerDisplay("{Message}")] public sealed class DataServiceClientException : InvalidOperationException { ///status code as returned by the server. private readonly int statusCode; #region Constructors. ////// Creates a new instance of DataServiceQueryException. /// public DataServiceClientException() : this(Strings.DataServiceException_GeneralError) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. public DataServiceClientException(string message) : this(message, null) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. public DataServiceClientException(string message, Exception innerException) : this(message, innerException, 500) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// status code as returned by the server. public DataServiceClientException(string message, int statusCode) : this(message, null, statusCode) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. /// status code as returned by the server. public DataServiceClientException(string message, Exception innerException, int statusCode) : base(message, innerException) { this.statusCode = statusCode; } #if !ASTORIA_LIGHT #pragma warning disable 0628 ////// Initializes a new instance of the DataServiceQueryException class from the /// specified SerializationInfo and StreamingContext instances. /// /// /// A SerializationInfo containing the information required to serialize /// the new DataServiceQueryException. /// /// A StreamingContext containing the source of the serialized stream /// associated with the new DataServiceQueryException. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1047", Justification = "Follows serialization info pattern.")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032", Justification = "Follows serialization info pattern.")] protected DataServiceClientException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context) : base(serializationInfo, context) { if (serializationInfo != null) { this.statusCode = serializationInfo.GetInt32("statusCode"); } } #pragma warning restore 0628 #endif #endregion Constructors. #region Public properties. ///Error code to be used in payloads. public int StatusCode { get { return this.statusCode; } } #endregion Public properties. #region Methods. #if !ASTORIA_LIGHT ////// Sets the SerializationInfo with information about the exception. /// /// The SerializationInfo that holds the serialized object data about the exception being thrown. /// The StreamingContext that contains contextual information about the source or destination. [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { if (info != null) { info.AddValue("statusCode", this.statusCode); } base.GetObjectData(info, context); } #endif #endregion Methods. } } // 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
- Hyperlink.cs
- PartialList.cs
- RightNameExpirationInfoPair.cs
- DictionarySectionHandler.cs
- ByValueEqualityComparer.cs
- SqlTypesSchemaImporter.cs
- CachedRequestParams.cs
- panel.cs
- SpAudioStreamWrapper.cs
- BufferBuilder.cs
- GeneralTransform2DTo3DTo2D.cs
- CodeMethodReturnStatement.cs
- httpstaticobjectscollection.cs
- RoleBoolean.cs
- XmlSchemaComplexContentExtension.cs
- CombinedGeometry.cs
- UInt16Converter.cs
- RoleBoolean.cs
- XmlAtomErrorReader.cs
- DataFormat.cs
- SoapParser.cs
- _DisconnectOverlappedAsyncResult.cs
- ToolStripItemGlyph.cs
- DataGridAddNewRow.cs
- StringAnimationUsingKeyFrames.cs
- TemplateControlParser.cs
- VisualStyleRenderer.cs
- complextypematerializer.cs
- StringReader.cs
- QueryPageSettingsEventArgs.cs
- HttpBrowserCapabilitiesBase.cs
- UrlPath.cs
- FontSource.cs
- SendActivity.cs
- ExtendedProperty.cs
- TimeZone.cs
- CursorConverter.cs
- DispatcherExceptionEventArgs.cs
- ClipboardProcessor.cs
- X509CertificateChain.cs
- TextClipboardData.cs
- BufferModesCollection.cs
- DynamicMethod.cs
- WebSysDisplayNameAttribute.cs
- ReadOnlyCollection.cs
- AnimatedTypeHelpers.cs
- StructuredTypeEmitter.cs
- SpellerInterop.cs
- Roles.cs
- AssociationSetMetadata.cs
- HtmlHead.cs
- ClientSettingsProvider.cs
- ConsoleTraceListener.cs
- DataGridViewLayoutData.cs
- NTAccount.cs
- XPathDocumentIterator.cs
- EncoderParameter.cs
- Light.cs
- NamedObject.cs
- FontWeightConverter.cs
- OrderByQueryOptionExpression.cs
- TextTreeTextNode.cs
- HttpClientCertificate.cs
- Rect3DConverter.cs
- OleDbInfoMessageEvent.cs
- PropertyCondition.cs
- SoapDocumentMethodAttribute.cs
- AudioFormatConverter.cs
- WpfMemberInvoker.cs
- WebPartHelpVerb.cs
- ListViewPagedDataSource.cs
- TextSimpleMarkerProperties.cs
- Span.cs
- JoinElimination.cs
- CacheDependency.cs
- HtmlEmptyTagControlBuilder.cs
- EncodingTable.cs
- TrayIconDesigner.cs
- DataSetMappper.cs
- ServiceDescriptionImporter.cs
- WindowsBrush.cs
- ConfigurationSchemaErrors.cs
- RSACryptoServiceProvider.cs
- UIServiceHelper.cs
- WebBrowserDesigner.cs
- SpeechEvent.cs
- MetabaseSettings.cs
- wgx_commands.cs
- RectAnimationUsingKeyFrames.cs
- BaseHashHelper.cs
- InvokePattern.cs
- SQLMembershipProvider.cs
- HotCommands.cs
- ProfilePropertyMetadata.cs
- DataGridViewCell.cs
- MobileContainerDesigner.cs
- RegularExpressionValidator.cs
- UpdateTranslator.cs
- DesignerDeviceConfig.cs
- TraceListener.cs