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 / 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
- ContentType.cs
- MessageFormatterConverter.cs
- InputBindingCollection.cs
- WindowsGraphicsWrapper.cs
- TypedElement.cs
- TextStore.cs
- DataComponentNameHandler.cs
- Predicate.cs
- TextEmbeddedObject.cs
- TransactionManager.cs
- FontFamilyValueSerializer.cs
- CodeValidator.cs
- RelativeSource.cs
- DataGrid.cs
- RoutedCommand.cs
- DbDataSourceEnumerator.cs
- TextServicesPropertyRanges.cs
- NativeMethods.cs
- TextServicesProperty.cs
- ReflectTypeDescriptionProvider.cs
- ComboBoxRenderer.cs
- UInt64Converter.cs
- ProjectionCamera.cs
- PingOptions.cs
- PromptEventArgs.cs
- MatrixConverter.cs
- FontDifferentiator.cs
- ApplicationInterop.cs
- ArgumentsParser.cs
- linebase.cs
- DbConnectionPoolGroup.cs
- DescendantOverDescendantQuery.cs
- NavigationWindow.cs
- WindowsFormsSynchronizationContext.cs
- ObjectViewQueryResultData.cs
- XmlBaseWriter.cs
- VectorAnimationBase.cs
- RawStylusInputReport.cs
- DnsPermission.cs
- WriteFileContext.cs
- DesigntimeLicenseContextSerializer.cs
- Serializer.cs
- oledbmetadatacolumnnames.cs
- WasAdminWrapper.cs
- PeerService.cs
- WebPermission.cs
- FakeModelItemImpl.cs
- XmlSerializationWriter.cs
- DashStyle.cs
- PeerCollaborationPermission.cs
- OutputCacheModule.cs
- TransformerConfigurationWizardBase.cs
- DashStyle.cs
- TransformCryptoHandle.cs
- Queue.cs
- FlagsAttribute.cs
- AssociatedControlConverter.cs
- CriticalHandle.cs
- ValuePattern.cs
- CacheHelper.cs
- WorkflowApplicationCompletedException.cs
- ToolStripPanelRow.cs
- TreeNodeBinding.cs
- ElasticEase.cs
- HorizontalAlignConverter.cs
- TextTreeUndoUnit.cs
- Converter.cs
- TextRunProperties.cs
- SR.cs
- DropTarget.cs
- XmlNotation.cs
- PaperSource.cs
- OpCodes.cs
- ToolStripGrip.cs
- CacheModeConverter.cs
- SizeLimitedCache.cs
- regiisutil.cs
- ViewCellRelation.cs
- CharConverter.cs
- Typeface.cs
- StyleXamlTreeBuilder.cs
- MdiWindowListItemConverter.cs
- MetadataItemSerializer.cs
- DbBuffer.cs
- WpfGeneratedKnownProperties.cs
- mediaclock.cs
- FileEnumerator.cs
- ADMembershipProvider.cs
- ManifestResourceInfo.cs
- SocketStream.cs
- ProcessModule.cs
- TileBrush.cs
- TabControlToolboxItem.cs
- CompilationAssemblyInstallComponent.cs
- PageParser.cs
- FixedPageStructure.cs
- LogExtentCollection.cs
- XsdBuilder.cs
- SafeRightsManagementEnvironmentHandle.cs
- DataControlLinkButton.cs