Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / HttpRawResponse.cs / 3 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataBoundControl.cs
- CultureInfoConverter.cs
- QilDataSource.cs
- Membership.cs
- KnowledgeBase.cs
- Latin1Encoding.cs
- MemoryFailPoint.cs
- ScriptHandlerFactory.cs
- Utility.cs
- TypeInitializationException.cs
- SplineKeyFrames.cs
- EntityCommandDefinition.cs
- EntityUtil.cs
- HtmlTernaryTree.cs
- XmlMembersMapping.cs
- OrderByQueryOptionExpression.cs
- PageEventArgs.cs
- QualifiedCellIdBoolean.cs
- EventDescriptorCollection.cs
- ViewUtilities.cs
- CompositeScriptReference.cs
- Misc.cs
- Thread.cs
- Transform.cs
- Regex.cs
- ProcessHostConfigUtils.cs
- XmlSchemaRedefine.cs
- OleDbConnection.cs
- FlowNode.cs
- DBCSCodePageEncoding.cs
- RemotingServices.cs
- Bits.cs
- VirtualDirectoryMappingCollection.cs
- JoinSymbol.cs
- AuthenticatingEventArgs.cs
- VScrollBar.cs
- XmlArrayAttribute.cs
- XMLSyntaxException.cs
- ControlPropertyNameConverter.cs
- ClientRoleProvider.cs
- DesignerFrame.cs
- XmlCharCheckingReader.cs
- OperationFormatter.cs
- SmiContext.cs
- HttpConfigurationSystem.cs
- XmlUnspecifiedAttribute.cs
- MenuCommands.cs
- OrderablePartitioner.cs
- DBDataPermission.cs
- SByteConverter.cs
- ReturnValue.cs
- ButtonDesigner.cs
- QilReference.cs
- StylusPlugInCollection.cs
- Matrix3DConverter.cs
- CultureInfoConverter.cs
- DocumentEventArgs.cs
- BindingValueChangedEventArgs.cs
- DocumentPageHost.cs
- TextBoxView.cs
- GrabHandleGlyph.cs
- SystemIPGlobalStatistics.cs
- BrowsableAttribute.cs
- DataRowCollection.cs
- Block.cs
- ColumnResizeAdorner.cs
- ContainerParaClient.cs
- MarshalDirectiveException.cs
- PersonalizationDictionary.cs
- ViewCellRelation.cs
- StyleTypedPropertyAttribute.cs
- StreamResourceInfo.cs
- TokenBasedSet.cs
- ExpressionBindings.cs
- DataGridViewCellValidatingEventArgs.cs
- ErrorTableItemStyle.cs
- XPathDocumentBuilder.cs
- RenderDataDrawingContext.cs
- Transform3DGroup.cs
- AutomationPeer.cs
- JpegBitmapDecoder.cs
- EventSetter.cs
- BamlWriter.cs
- HttpWriter.cs
- XmlCustomFormatter.cs
- DtdParser.cs
- HttpModuleActionCollection.cs
- FlowDocumentPage.cs
- RegistryExceptionHelper.cs
- WindowAutomationPeer.cs
- ProtocolState.cs
- Item.cs
- MimeTypePropertyAttribute.cs
- BamlTreeMap.cs
- ColorKeyFrameCollection.cs
- EngineSite.cs
- XmlAttributes.cs
- IndexOutOfRangeException.cs
- WsatServiceCertificate.cs
- HtmlUtf8RawTextWriter.cs