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
- TdsParserStateObject.cs
- BStrWrapper.cs
- ReliableMessagingVersionConverter.cs
- ObjectParameterCollection.cs
- WebPartActionVerb.cs
- ToolStripDropDownDesigner.cs
- MimePart.cs
- RegisteredArrayDeclaration.cs
- OverflowException.cs
- CompositeScriptReferenceEventArgs.cs
- SoapCodeExporter.cs
- ResourceDictionary.cs
- ServiceOperationParameter.cs
- HtmlProps.cs
- DesignerMetadata.cs
- XmlSubtreeReader.cs
- BinaryFormatter.cs
- WindowProviderWrapper.cs
- BookmarkScopeManager.cs
- XmlResolver.cs
- StringFormat.cs
- SafeFindHandle.cs
- MD5Cng.cs
- RealProxy.cs
- OdbcConnectionPoolProviderInfo.cs
- GridView.cs
- DuplicateDetector.cs
- TypeUtil.cs
- InstanceDataCollectionCollection.cs
- ChtmlCalendarAdapter.cs
- JsonDeserializer.cs
- ScriptResourceMapping.cs
- TabControl.cs
- UnaryNode.cs
- TextContainerHelper.cs
- GridItemPattern.cs
- SharedUtils.cs
- WebScriptServiceHost.cs
- HandlerFactoryCache.cs
- BidPrivateBase.cs
- MetadataSerializer.cs
- RelationshipConstraintValidator.cs
- PreservationFileWriter.cs
- MenuStrip.cs
- TdsParserSessionPool.cs
- GifBitmapEncoder.cs
- BitmapEffectDrawingContent.cs
- DispatcherProcessingDisabled.cs
- ImageSource.cs
- CriticalFinalizerObject.cs
- RoamingStoreFileUtility.cs
- XmlSchemaDatatype.cs
- QuadraticBezierSegment.cs
- StylusEventArgs.cs
- Fonts.cs
- LockCookie.cs
- OdbcDataAdapter.cs
- MenuItem.cs
- ConsoleCancelEventArgs.cs
- RangeBaseAutomationPeer.cs
- WindowsListViewItemCheckBox.cs
- UnaryNode.cs
- AdornerPresentationContext.cs
- AsyncOperationManager.cs
- ValidationErrorCollection.cs
- OleDbFactory.cs
- CodeLinePragma.cs
- HtmlElementCollection.cs
- Brush.cs
- ImplicitInputBrush.cs
- Point4DValueSerializer.cs
- AssemblySettingAttributes.cs
- ToolStripItemDesigner.cs
- AuthenticatingEventArgs.cs
- Journal.cs
- XmlSerializerVersionAttribute.cs
- SqlParameterizer.cs
- Vector3DCollectionConverter.cs
- LoginCancelEventArgs.cs
- PenThreadWorker.cs
- MsmqOutputChannel.cs
- TargetControlTypeAttribute.cs
- LocalizabilityAttribute.cs
- TreeNodeStyle.cs
- EntityViewGenerator.cs
- WrapPanel.cs
- HostVisual.cs
- XamlVector3DCollectionSerializer.cs
- XmlComment.cs
- PackageFilter.cs
- ResourceExpression.cs
- AttributeExtensions.cs
- ISAPIApplicationHost.cs
- Speller.cs
- InternalControlCollection.cs
- StaticResourceExtension.cs
- RegexParser.cs
- SecurityHelper.cs
- PenCursorManager.cs
- WebScriptServiceHost.cs