Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / HttpRawResponse.cs / 1305376 / HttpRawResponse.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Lean representation of response data * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web { using System.Collections; internal class HttpRawResponse { private int _statusCode; private String _statusDescr; private ArrayList _headers; private ArrayList _buffers; private bool _hasSubstBlocks; internal HttpRawResponse(int statusCode, string statusDescription, ArrayList headers, ArrayList buffers, bool hasSubstBlocks) { _statusCode = statusCode; _statusDescr = statusDescription; _headers = headers; _buffers = buffers; _hasSubstBlocks = hasSubstBlocks; } internal int StatusCode { get { return _statusCode;} } internal String StatusDescription { get { return _statusDescr;} } // list of HttpResponseHeader objects internal ArrayList Headers { get { return _headers;} } // list of IHttpResponseElement objects internal ArrayList Buffers { get { return _buffers; } } internal bool HasSubstBlocks { get { return _hasSubstBlocks;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * Lean representation of response data * * Copyright (c) 1998 Microsoft Corporation */ namespace System.Web { using System.Collections; internal class HttpRawResponse { private int _statusCode; private String _statusDescr; private ArrayList _headers; private ArrayList _buffers; private bool _hasSubstBlocks; internal HttpRawResponse(int statusCode, string statusDescription, ArrayList headers, ArrayList buffers, bool hasSubstBlocks) { _statusCode = statusCode; _statusDescr = statusDescription; _headers = headers; _buffers = buffers; _hasSubstBlocks = hasSubstBlocks; } internal int StatusCode { get { return _statusCode;} } internal String StatusDescription { get { return _statusDescr;} } // list of HttpResponseHeader objects internal ArrayList Headers { get { return _headers;} } // list of IHttpResponseElement objects internal ArrayList Buffers { get { return _buffers; } } internal bool HasSubstBlocks { get { return _hasSubstBlocks;} } } } // 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
- WmlTextViewAdapter.cs
- SplitterCancelEvent.cs
- EdmEntityTypeAttribute.cs
- KeyFrames.cs
- ObsoleteAttribute.cs
- Panel.cs
- RowCache.cs
- SamlAuthenticationStatement.cs
- DefaultSection.cs
- SingleObjectCollection.cs
- ServiceHostingEnvironment.cs
- SystemIPInterfaceStatistics.cs
- EncoderReplacementFallback.cs
- OdbcParameter.cs
- SystemKeyConverter.cs
- CompositeCollectionView.cs
- FontFamily.cs
- ExecutedRoutedEventArgs.cs
- GestureRecognizer.cs
- ClientBuildManagerCallback.cs
- MatrixIndependentAnimationStorage.cs
- DependencyPropertyDescriptor.cs
- AsyncSerializedWorker.cs
- PrinterUnitConvert.cs
- DesignerView.cs
- LocatorPart.cs
- SimpleType.cs
- TextClipboardData.cs
- GAC.cs
- ItemsControlAutomationPeer.cs
- MinMaxParagraphWidth.cs
- HashUtility.cs
- ServiceManager.cs
- CodeNamespaceCollection.cs
- AssemblyCollection.cs
- TreeView.cs
- Page.cs
- ToolboxItemFilterAttribute.cs
- SystemIPv6InterfaceProperties.cs
- EventProviderWriter.cs
- ViewBase.cs
- DataGridViewLinkCell.cs
- TreeNodeCollectionEditor.cs
- ClientConfigurationSystem.cs
- BamlCollectionHolder.cs
- COM2PropertyDescriptor.cs
- FrameworkContentElement.cs
- FormViewRow.cs
- InputReport.cs
- WindowCollection.cs
- serverconfig.cs
- ObfuscateAssemblyAttribute.cs
- PieceNameHelper.cs
- XmlWriter.cs
- CodeParameterDeclarationExpression.cs
- ResourceDisplayNameAttribute.cs
- ItemList.cs
- TraceContext.cs
- COM2ExtendedTypeConverter.cs
- SettingsPropertyValue.cs
- DelegateBodyWriter.cs
- KeyedHashAlgorithm.cs
- ConfigXmlDocument.cs
- IChannel.cs
- VectorValueSerializer.cs
- ExtendedTransformFactory.cs
- ComponentChangedEvent.cs
- namescope.cs
- Size.cs
- EmptyElement.cs
- BadImageFormatException.cs
- ConfigurationLocation.cs
- Int16.cs
- MediaPlayer.cs
- CodeDelegateInvokeExpression.cs
- OpenTypeCommon.cs
- IdentityValidationException.cs
- TriggerActionCollection.cs
- SymbolType.cs
- SetterBaseCollection.cs
- KeyGestureValueSerializer.cs
- SafeCryptoHandles.cs
- MemberRelationshipService.cs
- RepeaterItemCollection.cs
- ToolboxBitmapAttribute.cs
- TabPanel.cs
- _AcceptOverlappedAsyncResult.cs
- ExceptionRoutedEventArgs.cs
- WorkerRequest.cs
- HuffmanTree.cs
- InvalidPrinterException.cs
- FormViewRow.cs
- EpmSyndicationContentSerializer.cs
- AccessDataSourceView.cs
- PixelFormatConverter.cs
- ImageInfo.cs
- PagesSection.cs
- ServiceX509SecurityTokenProvider.cs
- ExceptionHelpers.cs
- PanelStyle.cs