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
- shaperfactory.cs
- SecurityDescriptor.cs
- GridViewColumnCollection.cs
- SHA384.cs
- AttributeUsageAttribute.cs
- ColumnClickEvent.cs
- TableRowsCollectionEditor.cs
- PaintValueEventArgs.cs
- SqlCachedBuffer.cs
- COM2ICategorizePropertiesHandler.cs
- WeakRefEnumerator.cs
- OrderByBuilder.cs
- ValueQuery.cs
- webproxy.cs
- AppSecurityManager.cs
- Int16AnimationUsingKeyFrames.cs
- SettingsPropertyCollection.cs
- HttpDebugHandler.cs
- DiscardableAttribute.cs
- DictionarySectionHandler.cs
- ValidationSummaryDesigner.cs
- XmlValidatingReaderImpl.cs
- ContextMarshalException.cs
- DataGridViewBand.cs
- DataControlFieldsEditor.cs
- ClientTargetCollection.cs
- SecurityUniqueId.cs
- HelpProvider.cs
- InputScopeManager.cs
- ObjectSpanRewriter.cs
- KeyValueConfigurationElement.cs
- MsmqAuthenticationMode.cs
- SqlStream.cs
- XmlDataLoader.cs
- DynamicValidatorEventArgs.cs
- AdornedElementPlaceholder.cs
- ScalarType.cs
- FlowDocumentPageViewerAutomationPeer.cs
- PeerNameResolver.cs
- Boolean.cs
- ToolStripManager.cs
- AnnotationHelper.cs
- RowTypeElement.cs
- MenuItem.cs
- RequiredFieldValidator.cs
- ProfileGroupSettings.cs
- PeerNameRegistration.cs
- XmlSchemaDocumentation.cs
- ManifestResourceInfo.cs
- VectorAnimationUsingKeyFrames.cs
- XhtmlStyleClass.cs
- WinEventQueueItem.cs
- DocumentXmlWriter.cs
- TableCellCollection.cs
- KnowledgeBase.cs
- Block.cs
- EntityDescriptor.cs
- iisPickupDirectory.cs
- ListSourceHelper.cs
- AssemblyInfo.cs
- InlineCollection.cs
- IResourceProvider.cs
- SafeNativeMethods.cs
- PageRequestManager.cs
- HScrollBar.cs
- WindowsAuthenticationEventArgs.cs
- AsyncStreamReader.cs
- ControlEvent.cs
- CodeSnippetExpression.cs
- QueryLifecycle.cs
- ReliableMessagingVersion.cs
- XmlLanguage.cs
- TimelineGroup.cs
- UpdateTranslator.cs
- MatrixKeyFrameCollection.cs
- InheritanceRules.cs
- ExtendedTransformFactory.cs
- ToolStripProgressBar.cs
- ContainerParagraph.cs
- RequestResizeEvent.cs
- FocusManager.cs
- ManagedIStream.cs
- SqlDataAdapter.cs
- AddDataControlFieldDialog.cs
- NavigationCommands.cs
- Thickness.cs
- RegexParser.cs
- ScrollPatternIdentifiers.cs
- RowToFieldTransformer.cs
- CustomValidator.cs
- NamespaceEmitter.cs
- PagerSettings.cs
- PickBranchDesigner.xaml.cs
- BinaryObjectWriter.cs
- WinEventTracker.cs
- TraceContextEventArgs.cs
- ClientTargetCollection.cs
- InvalidEnumArgumentException.cs
- XmlProcessingInstruction.cs
- InfoCardListRequest.cs