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
- AssociationEndMember.cs
- PageThemeParser.cs
- DataGridViewRowEventArgs.cs
- TransactionFlowBindingElementImporter.cs
- ContentElement.cs
- ReadOnlyState.cs
- StreamGeometry.cs
- DrawingGroup.cs
- TableNameAttribute.cs
- SHA512Managed.cs
- XmlC14NWriter.cs
- BindingManagerDataErrorEventArgs.cs
- RtfControlWordInfo.cs
- DateTimeOffsetConverter.cs
- DbDataRecord.cs
- ScaleTransform.cs
- SmtpLoginAuthenticationModule.cs
- AssociationProvider.cs
- ProfileModule.cs
- SelectingProviderEventArgs.cs
- WinFormsSecurity.cs
- SystemColors.cs
- FileNotFoundException.cs
- XPathDocumentNavigator.cs
- FrameworkObject.cs
- PackageDigitalSignatureManager.cs
- SqlProfileProvider.cs
- ModulesEntry.cs
- COM2EnumConverter.cs
- Stack.cs
- PageAction.cs
- OpenFileDialog.cs
- RepeatInfo.cs
- FontStretches.cs
- InvalidAsynchronousStateException.cs
- WebPartVerbCollection.cs
- Hash.cs
- ConsoleCancelEventArgs.cs
- RefExpr.cs
- XamlPathDataSerializer.cs
- TextDecorationUnitValidation.cs
- CryptoConfig.cs
- SelectedGridItemChangedEvent.cs
- SHA256.cs
- BatchWriter.cs
- RangeValuePattern.cs
- StrongNameMembershipCondition.cs
- ConvertersCollection.cs
- EqualityComparer.cs
- InvalidCastException.cs
- DependencyObjectType.cs
- WizardPanel.cs
- MsmqIntegrationProcessProtocolHandler.cs
- AlignmentXValidation.cs
- AppDomainFactory.cs
- ContainerAction.cs
- SerializationFieldInfo.cs
- CryptoApi.cs
- CompositeTypefaceMetrics.cs
- ParallelLoopState.cs
- RadioButtonDesigner.cs
- FileChangesMonitor.cs
- TextSimpleMarkerProperties.cs
- DesignerVerb.cs
- SchemaMapping.cs
- BaseResourcesBuildProvider.cs
- Vertex.cs
- CacheVirtualItemsEvent.cs
- TextEditorTyping.cs
- BoundPropertyEntry.cs
- ResourcePermissionBaseEntry.cs
- _ListenerRequestStream.cs
- CompositeDesignerAccessibleObject.cs
- DynamicILGenerator.cs
- ComNativeDescriptor.cs
- TextProperties.cs
- EventWaitHandleSecurity.cs
- FormView.cs
- MissingSatelliteAssemblyException.cs
- SqlDeflator.cs
- IntSecurity.cs
- PropertyValueChangedEvent.cs
- BitmapVisualManager.cs
- ArrayList.cs
- GenericTypeParameterBuilder.cs
- WebPartTracker.cs
- DateTimeOffset.cs
- PersonalizationDictionary.cs
- LinqDataSourceDisposeEventArgs.cs
- InvalidComObjectException.cs
- Pointer.cs
- DoubleAnimationClockResource.cs
- View.cs
- State.cs
- BindingRestrictions.cs
- RelationshipConverter.cs
- SoapSchemaImporter.cs
- ReadOnlyTernaryTree.cs
- ExtractCollection.cs
- SelectionChangedEventArgs.cs