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
- InstanceValue.cs
- WindowsListViewSubItem.cs
- DoubleAnimationUsingKeyFrames.cs
- CryptoKeySecurity.cs
- StringStorage.cs
- FileVersionInfo.cs
- EventEntry.cs
- DataGridRowHeaderAutomationPeer.cs
- SiteIdentityPermission.cs
- SqlUserDefinedTypeAttribute.cs
- AuthorizationRule.cs
- Validator.cs
- TargetException.cs
- ByteStream.cs
- Permission.cs
- BindingSource.cs
- DetailsViewPagerRow.cs
- MsmqTransportElement.cs
- ToolStripGripRenderEventArgs.cs
- EdmToObjectNamespaceMap.cs
- UIElementParaClient.cs
- Geometry.cs
- HighlightVisual.cs
- TagPrefixInfo.cs
- ExceptionHandler.cs
- StylusButtonEventArgs.cs
- odbcmetadatafactory.cs
- MessageQueuePermission.cs
- KeyEventArgs.cs
- Set.cs
- SnapshotChangeTrackingStrategy.cs
- DbXmlEnabledProviderManifest.cs
- Point.cs
- TableColumnCollectionInternal.cs
- ComplexTypeEmitter.cs
- SessionEndedEventArgs.cs
- HttpHandlerAction.cs
- DataGridViewRow.cs
- WindowsFormsLinkLabel.cs
- ViewValidator.cs
- StrongNamePublicKeyBlob.cs
- TimeStampChecker.cs
- DateTimeOffsetStorage.cs
- DeferredTextReference.cs
- GAC.cs
- SinglePageViewer.cs
- HttpPostedFile.cs
- ConvertEvent.cs
- TemplatedAdorner.cs
- ItemsChangedEventArgs.cs
- ByteConverter.cs
- DbSource.cs
- PeerCredential.cs
- AmbientLight.cs
- Win32.cs
- MulticastDelegate.cs
- ExtensionDataObject.cs
- Operators.cs
- ImageButton.cs
- BuildResult.cs
- CallbackValidator.cs
- SrgsSubset.cs
- Lasso.cs
- OperandQuery.cs
- ItemChangedEventArgs.cs
- DelegatedStream.cs
- WebReferencesBuildProvider.cs
- DerivedKeyCachingSecurityTokenSerializer.cs
- DiscoveryReferences.cs
- ConstructorBuilder.cs
- Random.cs
- ColorTranslator.cs
- TemplateControlParser.cs
- safelinkcollection.cs
- EmptyCollection.cs
- WindowsListViewScroll.cs
- CorrelationScope.cs
- X509WindowsSecurityToken.cs
- securitycriticaldata.cs
- XPathAncestorIterator.cs
- XmlElementCollection.cs
- Transform3DGroup.cs
- KeyValuePair.cs
- EntityModelSchemaGenerator.cs
- IdnMapping.cs
- PrtTicket_Public_Simple.cs
- TripleDES.cs
- ConnectionManagementElementCollection.cs
- Utils.cs
- HttpResponseInternalWrapper.cs
- StringToken.cs
- OdbcCommandBuilder.cs
- SwitchExpression.cs
- ListBindableAttribute.cs
- PanelStyle.cs
- Parser.cs
- SqlConnectionString.cs
- BinarySerializer.cs
- ObjectResult.cs
- FamilyTypeface.cs