Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / OperationResponse.cs / 1 / OperationResponse.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Operation response base class // //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Collections.Generic; using System.Diagnostics; ///Operation response base class [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1010", Justification = "required for this feature")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1710", Justification = "required for this feature")] public abstract class OperationResponse { ///Http headers of the response. private Dictionaryheaders; /// Http status code of the response. private int statusCode; ///exception to throw during get results private Exception innerException; ////// constructor /// /// HTTP headers internal OperationResponse(Dictionaryheaders) { Debug.Assert(null != headers, "null headers"); this.headers = headers; } /// Http headers of the response. public IDictionaryHeaders { get { return this.headers; } } /// Http status code of the response. public int StatusCode { get { return this.statusCode; } internal set { this.statusCode = value; } } ///Get and set the exception object if this response had a failure public Exception Error { get { return this.innerException; } set { Debug.Assert(null != value, "should not set null"); this.innerException = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Operation response base class // //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Collections.Generic; using System.Diagnostics; ///Operation response base class [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1010", Justification = "required for this feature")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1710", Justification = "required for this feature")] public abstract class OperationResponse { ///Http headers of the response. private Dictionaryheaders; /// Http status code of the response. private int statusCode; ///exception to throw during get results private Exception innerException; ////// constructor /// /// HTTP headers internal OperationResponse(Dictionaryheaders) { Debug.Assert(null != headers, "null headers"); this.headers = headers; } /// Http headers of the response. public IDictionaryHeaders { get { return this.headers; } } /// Http status code of the response. public int StatusCode { get { return this.statusCode; } internal set { this.statusCode = value; } } ///Get and set the exception object if this response had a failure public Exception Error { get { return this.innerException; } set { Debug.Assert(null != value, "should not set null"); this.innerException = value; } } } } // 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
- ZoneMembershipCondition.cs
- URLIdentityPermission.cs
- DataGridSortingEventArgs.cs
- TypeListConverter.cs
- HashMembershipCondition.cs
- XamlTypeMapper.cs
- streamingZipPartStream.cs
- ArrayList.cs
- TrustSection.cs
- ProxyManager.cs
- SqlDataSourceFilteringEventArgs.cs
- DataGridBoolColumn.cs
- BindingSource.cs
- PackWebRequestFactory.cs
- TextContainerChangeEventArgs.cs
- SqlWriter.cs
- Suspend.cs
- SafeFileMappingHandle.cs
- PageVisual.cs
- XpsSerializerWriter.cs
- PolyQuadraticBezierSegment.cs
- FontResourceCache.cs
- FrameworkContentElement.cs
- WebHttpBindingCollectionElement.cs
- ListViewInsertEventArgs.cs
- GlobalizationAssembly.cs
- SqlNotificationEventArgs.cs
- HandlerMappingMemo.cs
- ComponentEditorPage.cs
- PenCursorManager.cs
- altserialization.cs
- DBNull.cs
- UnsafeNativeMethods.cs
- CommandDevice.cs
- ApplicationId.cs
- EndpointAddress.cs
- Point3D.cs
- InputBuffer.cs
- ListViewAutomationPeer.cs
- Duration.cs
- MultiAsyncResult.cs
- ProfileEventArgs.cs
- CommonObjectSecurity.cs
- CompilationLock.cs
- DynamicQueryStringParameter.cs
- EpmSourceTree.cs
- WebBrowsableAttribute.cs
- ImmutableDispatchRuntime.cs
- WebPartConnectVerb.cs
- WebRequestModuleElement.cs
- AsyncOperationManager.cs
- __ComObject.cs
- DiscreteKeyFrames.cs
- PartialTrustValidationBehavior.cs
- XmlSchemaValidationException.cs
- TextBlockAutomationPeer.cs
- BCryptHashAlgorithm.cs
- WpfWebRequestHelper.cs
- Decimal.cs
- MobileTemplatedControlDesigner.cs
- ZoneButton.cs
- SslStreamSecurityUpgradeProvider.cs
- ObjectDataSourceChooseMethodsPanel.cs
- TextElement.cs
- FilteredAttributeCollection.cs
- MenuAdapter.cs
- InstanceNotReadyException.cs
- GenericRootAutomationPeer.cs
- Win32Native.cs
- OpenTypeCommon.cs
- SignatureToken.cs
- SecUtil.cs
- SBCSCodePageEncoding.cs
- DataGridPagerStyle.cs
- HtmlControlDesigner.cs
- UdpTransportSettingsElement.cs
- ConfigurationManagerHelperFactory.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- Metadata.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- CursorConverter.cs
- Stream.cs
- TableCell.cs
- SwitchElementsCollection.cs
- SevenBitStream.cs
- DataSet.cs
- MediaElementAutomationPeer.cs
- ArcSegment.cs
- DataListItemEventArgs.cs
- PeerTransportBindingElement.cs
- IdentityHolder.cs
- ReachSerializableProperties.cs
- AsyncCallback.cs
- Bezier.cs
- LogPolicy.cs
- CodeLinePragma.cs
- SafeNativeMethodsMilCoreApi.cs
- MsmqTransportElement.cs
- SoundPlayer.cs
- TextMarkerSource.cs