Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / DataServiceRequestException.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BooleanFacetDescriptionElement.cs
- PageTheme.cs
- Win32MouseDevice.cs
- CompareValidator.cs
- TextParentUndoUnit.cs
- CompilerGeneratedAttribute.cs
- DemultiplexingClientMessageFormatter.cs
- XmlBinaryReader.cs
- DataProtectionSecurityStateEncoder.cs
- RowType.cs
- CheckBoxStandardAdapter.cs
- InternalResources.cs
- GeometryDrawing.cs
- SEHException.cs
- AnnouncementService.cs
- log.cs
- ScriptMethodAttribute.cs
- DesignerSerializationManager.cs
- MemberCollection.cs
- ListenerUnsafeNativeMethods.cs
- HttpValueCollection.cs
- path.cs
- TableLayoutPanel.cs
- Timer.cs
- SelectorItemAutomationPeer.cs
- NonNullItemCollection.cs
- UncommonField.cs
- EditCommandColumn.cs
- RightsManagementInformation.cs
- BamlBinaryReader.cs
- CodeTypeDeclarationCollection.cs
- AnimationException.cs
- SerializationFieldInfo.cs
- SQLGuidStorage.cs
- AppDomainCompilerProxy.cs
- OleDbDataAdapter.cs
- DataGridViewRowPostPaintEventArgs.cs
- HttpCachePolicyWrapper.cs
- WorkflowDesignerMessageFilter.cs
- OneOfTypeConst.cs
- EventHandlerList.cs
- EdmPropertyAttribute.cs
- ReachSerializationCacheItems.cs
- RelationshipType.cs
- LookupNode.cs
- SqlUtil.cs
- IisTraceWebEventProvider.cs
- RegexCode.cs
- Point3DAnimationBase.cs
- SqlBulkCopyColumnMappingCollection.cs
- CancellationTokenSource.cs
- TypedElement.cs
- WebServiceData.cs
- BitmapEffectInputConnector.cs
- SymbolEqualComparer.cs
- CodeComment.cs
- FolderBrowserDialog.cs
- SqlUtil.cs
- JavaScriptString.cs
- DescendantBaseQuery.cs
- SplineQuaternionKeyFrame.cs
- XXXOnTypeBuilderInstantiation.cs
- CodeComment.cs
- Effect.cs
- Logging.cs
- EllipticalNodeOperations.cs
- ModelItem.cs
- GACIdentityPermission.cs
- ISAPIApplicationHost.cs
- DataRecord.cs
- Type.cs
- ClientSponsor.cs
- Visual3DCollection.cs
- GridEntryCollection.cs
- XmlIlTypeHelper.cs
- WorkflowRuntime.cs
- TargetPerspective.cs
- SymbolType.cs
- ProfileSettingsCollection.cs
- PipeSecurity.cs
- JsonByteArrayDataContract.cs
- InstancePersistence.cs
- SafeHandles.cs
- ResourceAttributes.cs
- _LocalDataStore.cs
- ParentUndoUnit.cs
- Compiler.cs
- Page.cs
- DecoratedNameAttribute.cs
- TextEditorContextMenu.cs
- COAUTHINFO.cs
- EnumerableRowCollection.cs
- HiddenField.cs
- SystemFonts.cs
- DotNetATv1WindowsLogEntrySerializer.cs
- QueueProcessor.cs
- SecurityElement.cs
- _NativeSSPI.cs
- CodeTypeDeclarationCollection.cs
- FixedSOMGroup.cs