Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / DataServiceRequestException.cs / 1 / DataServiceRequestException.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Exception class for batch requests and CUD operations. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; ////// The exception that is thrown when executing a single query request. /// #if !ASTORIA_LIGHT [Serializable] #endif [System.Diagnostics.DebuggerDisplay("{Message}")] public sealed class DataServiceRequestException : InvalidOperationException { ///Actual response object. #if !ASTORIA_LIGHT [NonSerialized] #endif private readonly DataServiceResponse response; #region Constructors. ////// Creates a new instance of DataServiceRequestException. /// public DataServiceRequestException() : base(Strings.DataServiceException_GeneralError) { } ////// Creates a new instance of DataServiceRequestException. /// /// error message for this exception. public DataServiceRequestException(string message) : base(message) { } ////// Creates a new instance of DataServiceRequestException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. public DataServiceRequestException(string message, Exception innerException) : base(message, innerException) { } ////// Creates a new instance of DataServiceRequestException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. /// response object for this exception. public DataServiceRequestException(string message, Exception innerException, DataServiceResponse 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 DataServiceException. /// /// A StreamingContext containing the source of the serialized stream /// associated with the new DataServiceException. [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 DataServiceRequestException(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 DataServiceResponse 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 batch requests and CUD operations. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; ////// The exception that is thrown when executing a single query request. /// #if !ASTORIA_LIGHT [Serializable] #endif [System.Diagnostics.DebuggerDisplay("{Message}")] public sealed class DataServiceRequestException : InvalidOperationException { ///Actual response object. #if !ASTORIA_LIGHT [NonSerialized] #endif private readonly DataServiceResponse response; #region Constructors. ////// Creates a new instance of DataServiceRequestException. /// public DataServiceRequestException() : base(Strings.DataServiceException_GeneralError) { } ////// Creates a new instance of DataServiceRequestException. /// /// error message for this exception. public DataServiceRequestException(string message) : base(message) { } ////// Creates a new instance of DataServiceRequestException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. public DataServiceRequestException(string message, Exception innerException) : base(message, innerException) { } ////// Creates a new instance of DataServiceRequestException. /// /// error message for this exception. /// Exception that caused this exception to be thrown. /// response object for this exception. public DataServiceRequestException(string message, Exception innerException, DataServiceResponse 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 DataServiceException. /// /// A StreamingContext containing the source of the serialized stream /// associated with the new DataServiceException. [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 DataServiceRequestException(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 DataServiceResponse 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
- DataGridViewAutoSizeColumnModeEventArgs.cs
- MobileControlDesigner.cs
- InterleavedZipPartStream.cs
- OpenFileDialog.cs
- SatelliteContractVersionAttribute.cs
- IxmlLineInfo.cs
- Solver.cs
- MenuItem.cs
- WeakReferenceEnumerator.cs
- CommentEmitter.cs
- ValidatorUtils.cs
- BehaviorEditorPart.cs
- AuthenticationManager.cs
- EdgeModeValidation.cs
- RemotingException.cs
- PartialCachingAttribute.cs
- XmlSchemaAttribute.cs
- CustomValidator.cs
- CaretElement.cs
- XmlAtomErrorReader.cs
- ClientConvert.cs
- GridViewHeaderRowPresenter.cs
- RNGCryptoServiceProvider.cs
- SequentialWorkflowHeaderFooter.cs
- DocumentApplicationState.cs
- WorkflowPersistenceService.cs
- UnmanagedMemoryStreamWrapper.cs
- EpmCustomContentWriterNodeData.cs
- ToolStripDropDown.cs
- SqlCacheDependencySection.cs
- FocusTracker.cs
- MetadataCache.cs
- DefaultProxySection.cs
- SupportingTokenDuplexChannel.cs
- LoginCancelEventArgs.cs
- Win32Native.cs
- XamlStackWriter.cs
- HtmlPhoneCallAdapter.cs
- Command.cs
- Random.cs
- RoutedEventValueSerializer.cs
- COSERVERINFO.cs
- SchemaNamespaceManager.cs
- DeclaredTypeElementCollection.cs
- XMLDiffLoader.cs
- InfoCardSchemas.cs
- SslStream.cs
- Main.cs
- EnumDataContract.cs
- SerializationInfoEnumerator.cs
- VerticalAlignConverter.cs
- TickBar.cs
- WaitHandleCannotBeOpenedException.cs
- AssemblyCache.cs
- TranslateTransform3D.cs
- DesignerAttribute.cs
- BasePropertyDescriptor.cs
- SupportsPreviewControlAttribute.cs
- WebPartTransformer.cs
- QueryOptionExpression.cs
- CatalogPartCollection.cs
- StylusPointPropertyInfo.cs
- TrackingAnnotationCollection.cs
- UpdatePanelControlTrigger.cs
- CapabilitiesRule.cs
- BinHexDecoder.cs
- DateTimeConverter2.cs
- CalendarTable.cs
- VirtualizedContainerService.cs
- ReferentialConstraint.cs
- CryptoApi.cs
- ErrorFormatterPage.cs
- SafeProcessHandle.cs
- PropertyInformationCollection.cs
- MaskDescriptors.cs
- BindableAttribute.cs
- RemoteWebConfigurationHostServer.cs
- ServiceModelEnumValidatorAttribute.cs
- NumericPagerField.cs
- Thickness.cs
- ZipIORawDataFileBlock.cs
- DataGridViewImageColumn.cs
- SpecialNameAttribute.cs
- UnsafeNativeMethods.cs
- sitestring.cs
- EntityTypeEmitter.cs
- Int64AnimationBase.cs
- SmiEventSink_DeferedProcessing.cs
- UserControlAutomationPeer.cs
- SafeArrayRankMismatchException.cs
- RequestQueryProcessor.cs
- BehaviorEditorPart.cs
- SafeReversePInvokeHandle.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- tooltip.cs
- UpdatePanelTriggerCollection.cs
- DateTimeConstantAttribute.cs
- TrayIconDesigner.cs
- FontCacheLogic.cs
- SqlCacheDependency.cs