Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / DataServiceQueryException.cs / 1305376 / DataServiceQueryException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Exception class for query requests. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; ////// The exception that is thrown when an error occurs while processing a batch request or /// during SaveChanges. /// #if !ASTORIA_LIGHT [Serializable] #endif [System.Diagnostics.DebuggerDisplay("{Message}")] public sealed class DataServiceQueryException : InvalidOperationException { #region Private fields. ///Actual response object. #if !ASTORIA_LIGHT [NonSerialized] #endif private readonly QueryOperationResponse response; #endregion Private fields. #region Constructors. ////// Creates a new instance of DataServiceQueryException. /// public DataServiceQueryException() : base(Strings.DataServiceException_GeneralError) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. public DataServiceQueryException(string message) : base(message) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. public DataServiceQueryException(string message, Exception innerException) : base(message, innerException) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. /// response object for this exception. public DataServiceQueryException(string message, Exception innerException, QueryOperationResponse response) : base(message, innerException) { this.response = response; } #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 DataServiceQueryException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } #pragma warning restore 0628 #endif #endregion Constructors. #region Public properties. ///Error code to be used in payloads. public QueryOperationResponse Response { get { return this.response; } } #endregion Public properties. } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Exception class for query requests. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; ////// The exception that is thrown when an error occurs while processing a batch request or /// during SaveChanges. /// #if !ASTORIA_LIGHT [Serializable] #endif [System.Diagnostics.DebuggerDisplay("{Message}")] public sealed class DataServiceQueryException : InvalidOperationException { #region Private fields. ///Actual response object. #if !ASTORIA_LIGHT [NonSerialized] #endif private readonly QueryOperationResponse response; #endregion Private fields. #region Constructors. ////// Creates a new instance of DataServiceQueryException. /// public DataServiceQueryException() : base(Strings.DataServiceException_GeneralError) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. public DataServiceQueryException(string message) : base(message) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. public DataServiceQueryException(string message, Exception innerException) : base(message, innerException) { } ////// Creates a new instance of DataServiceQueryException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. /// response object for this exception. public DataServiceQueryException(string message, Exception innerException, QueryOperationResponse response) : base(message, innerException) { this.response = response; } #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 DataServiceQueryException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } #pragma warning restore 0628 #endif #endregion Constructors. #region Public properties. ///Error code to be used in payloads. public QueryOperationResponse Response { get { return this.response; } } #endregion Public properties. } } // 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
- Span.cs
- AssemblyAttributesGoHere.cs
- SystemDiagnosticsSection.cs
- RoutingService.cs
- MenuItemCollection.cs
- WebPartTransformerAttribute.cs
- ProfileGroupSettings.cs
- SizeChangedInfo.cs
- DeadCharTextComposition.cs
- DigitShape.cs
- IsolatedStorageFile.cs
- Win32Exception.cs
- Latin1Encoding.cs
- Soap12FormatExtensions.cs
- InvalidContentTypeException.cs
- PenLineCapValidation.cs
- MdiWindowListStrip.cs
- TextSchema.cs
- EventLogEntryCollection.cs
- SmtpNetworkElement.cs
- SapiAttributeParser.cs
- ZipIOFileItemStream.cs
- StorageComplexPropertyMapping.cs
- BamlMapTable.cs
- DisposableCollectionWrapper.cs
- RowUpdatedEventArgs.cs
- GridViewUpdatedEventArgs.cs
- Relationship.cs
- ChannelServices.cs
- XmlUnspecifiedAttribute.cs
- BoundColumn.cs
- PageFunction.cs
- ThicknessKeyFrameCollection.cs
- XmlStringTable.cs
- EntityViewGenerator.cs
- Package.cs
- WebReferencesBuildProvider.cs
- EventLogPermissionEntry.cs
- CacheVirtualItemsEvent.cs
- ImageSource.cs
- HashCodeCombiner.cs
- ProfilePropertyMetadata.cs
- SchemaMerger.cs
- ExpiredSecurityTokenException.cs
- SiteOfOriginContainer.cs
- SafeSecurityHandles.cs
- XmlStreamNodeWriter.cs
- ConnectionsZone.cs
- UInt16.cs
- SmiMetaDataProperty.cs
- DataAccessException.cs
- InstanceDataCollection.cs
- DesignSurface.cs
- CryptoConfig.cs
- TableDetailsCollection.cs
- PreloadHost.cs
- _NetworkingPerfCounters.cs
- SHA256.cs
- unitconverter.cs
- BitVector32.cs
- UnsafeNativeMethods.cs
- ExecutionEngineException.cs
- X509CertificateChain.cs
- ViewStateAttachedPropertyFeature.cs
- EventProxy.cs
- KeyGestureValueSerializer.cs
- AcceleratedTokenAuthenticator.cs
- InstrumentationTracker.cs
- MexNamedPipeBindingCollectionElement.cs
- FormView.cs
- HtmlInputPassword.cs
- EdmItemError.cs
- ISAPIApplicationHost.cs
- CodeComment.cs
- ButtonStandardAdapter.cs
- ExpressionBuilderContext.cs
- TransformerConfigurationWizardBase.cs
- AddInProcess.cs
- RuntimeConfig.cs
- UIElement.cs
- XPathParser.cs
- OleDbPropertySetGuid.cs
- ReflectionPermission.cs
- BaseResourcesBuildProvider.cs
- OpacityConverter.cs
- SkinBuilder.cs
- SmiRequestExecutor.cs
- NumberFunctions.cs
- TextBoxBase.cs
- PasswordPropertyTextAttribute.cs
- XpsFontSubsetter.cs
- ToolStripItemClickedEventArgs.cs
- StateChangeEvent.cs
- GenericRootAutomationPeer.cs
- Font.cs
- CompressedStack.cs
- ParentUndoUnit.cs
- EntityDataSourceContainerNameItem.cs
- UnsafePeerToPeerMethods.cs
- HttpCookieCollection.cs