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
- DashStyles.cs
- Scripts.cs
- SrgsGrammar.cs
- ObjectSpanRewriter.cs
- ECDiffieHellmanCng.cs
- AttributeEmitter.cs
- StreamUpdate.cs
- CheckBox.cs
- EventWaitHandle.cs
- FontFamilyValueSerializer.cs
- CompiledQueryCacheKey.cs
- DataGridViewRowHeaderCell.cs
- ParameterCollection.cs
- ProtocolElementCollection.cs
- VerbConverter.cs
- Compensation.cs
- FrameworkContentElementAutomationPeer.cs
- Canvas.cs
- WebUtil.cs
- DefaultValueTypeConverter.cs
- DeobfuscatingStream.cs
- ChangeToolStripParentVerb.cs
- ProviderException.cs
- RuleRefElement.cs
- SqlRetyper.cs
- ExpressionBindingCollection.cs
- DecoderBestFitFallback.cs
- DSASignatureDeformatter.cs
- DataListItemCollection.cs
- PermissionToken.cs
- MetaDataInfo.cs
- ALinqExpressionVisitor.cs
- DataGridViewCellConverter.cs
- ConfigurationElementProperty.cs
- DataViewManager.cs
- IntegerValidatorAttribute.cs
- CardSpaceSelector.cs
- MDIClient.cs
- MimeObjectFactory.cs
- XmlSerializer.cs
- ToolConsole.cs
- ProfilePropertySettingsCollection.cs
- ApplicationServicesHostFactory.cs
- PersistenceTypeAttribute.cs
- SingleKeyFrameCollection.cs
- ClientScriptManagerWrapper.cs
- SafeLibraryHandle.cs
- Stylus.cs
- DecimalFormatter.cs
- _AutoWebProxyScriptWrapper.cs
- OracleDataAdapter.cs
- NegotiationTokenProvider.cs
- TextRangeBase.cs
- RequiredFieldValidator.cs
- GeneralTransform3DGroup.cs
- StatusBarItemAutomationPeer.cs
- BezierSegment.cs
- TableLayoutPanel.cs
- LiteralControl.cs
- HttpApplicationFactory.cs
- ToolboxComponentsCreatedEventArgs.cs
- StreamUpgradeProvider.cs
- SortedList.cs
- ExitEventArgs.cs
- OleDbException.cs
- OdbcTransaction.cs
- WebHttpBindingElement.cs
- Bezier.cs
- ObjectTag.cs
- ManipulationDeltaEventArgs.cs
- ExceptionUtility.cs
- StrongNamePublicKeyBlob.cs
- SurrogateEncoder.cs
- PersistenceTypeAttribute.cs
- XPathParser.cs
- LineGeometry.cs
- TabletDeviceInfo.cs
- BoundPropertyEntry.cs
- DataGridViewCellFormattingEventArgs.cs
- Publisher.cs
- RMEnrollmentPage1.cs
- WindowExtensionMethods.cs
- HtmlControlPersistable.cs
- HtmlContainerControl.cs
- XsltArgumentList.cs
- JsonWriter.cs
- TimeoutValidationAttribute.cs
- BasicViewGenerator.cs
- Positioning.cs
- InitializerFacet.cs
- CalculatedColumn.cs
- MetadataHelper.cs
- ForwardPositionQuery.cs
- InkCanvasInnerCanvas.cs
- TextSimpleMarkerProperties.cs
- OperationExecutionFault.cs
- CodeDomConfigurationHandler.cs
- MenuItemBindingCollection.cs
- SelectionItemPattern.cs
- StatusBarPanelClickEvent.cs