Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / HttpRawResponse.cs / 1 / 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.
//
//-----------------------------------------------------------------------------
/*
* 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Oid.cs
- TableProvider.cs
- ArrangedElementCollection.cs
- HMAC.cs
- ServiceDiscoveryBehavior.cs
- SingleAnimationUsingKeyFrames.cs
- BaseUriHelper.cs
- wgx_sdk_version.cs
- StringAnimationUsingKeyFrames.cs
- NameNode.cs
- StorageBasedPackageProperties.cs
- ScriptingRoleServiceSection.cs
- SymmetricCryptoHandle.cs
- WindowsScroll.cs
- AttributeSetAction.cs
- SelectedPathEditor.cs
- Brush.cs
- ColorBlend.cs
- Schedule.cs
- EUCJPEncoding.cs
- KeyedHashAlgorithm.cs
- EntityDataSource.cs
- MetadataSerializer.cs
- AuthStoreRoleProvider.cs
- TreeViewItem.cs
- HasActivatableWorkflowEvent.cs
- HtmlShimManager.cs
- EditingCoordinator.cs
- FilePresentation.cs
- FlowDocumentPageViewerAutomationPeer.cs
- QilLoop.cs
- sqlinternaltransaction.cs
- BindingContext.cs
- RadialGradientBrush.cs
- AppSecurityManager.cs
- ToolStripManager.cs
- SerializationEventsCache.cs
- ParserStreamGeometryContext.cs
- MetadataItemSerializer.cs
- RepeatBehavior.cs
- GestureRecognitionResult.cs
- IndexedGlyphRun.cs
- PartManifestEntry.cs
- SelectionRangeConverter.cs
- DesignerTextViewAdapter.cs
- DivideByZeroException.cs
- RemoveStoryboard.cs
- PenLineJoinValidation.cs
- DeviceSpecificDesigner.cs
- TextUtf8RawTextWriter.cs
- TextSelectionHighlightLayer.cs
- BindingContext.cs
- mongolianshape.cs
- FileAuthorizationModule.cs
- XmlSortKey.cs
- SqlReferenceCollection.cs
- NamespaceDisplayAutomationPeer.cs
- GraphicsContainer.cs
- MethodCallExpression.cs
- SystemIdentity.cs
- HandoffBehavior.cs
- ActiveXHost.cs
- Point3DCollectionValueSerializer.cs
- UriParserTemplates.cs
- ParenExpr.cs
- ByteStack.cs
- DbModificationCommandTree.cs
- HtmlButton.cs
- ExpressionDumper.cs
- XPathNodeList.cs
- ReceiveMessageAndVerifySecurityAsyncResultBase.cs
- HasCopySemanticsAttribute.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- SoapObjectInfo.cs
- DbParameterCollectionHelper.cs
- InheritanceAttribute.cs
- PtsCache.cs
- AnnotationComponentManager.cs
- KeyPressEvent.cs
- Util.cs
- SqlInternalConnectionTds.cs
- ExpressionBuilderCollection.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- ByteRangeDownloader.cs
- PropertyConverter.cs
- InvalidAsynchronousStateException.cs
- ToolStripRendererSwitcher.cs
- ActivityBindForm.cs
- XmlDownloadManager.cs
- LocalizableAttribute.cs
- EntitySqlException.cs
- StringBlob.cs
- DataBoundControl.cs
- EntityCommandExecutionException.cs
- JsonFormatGeneratorStatics.cs
- OutputCacheSettingsSection.cs
- RotateTransform3D.cs
- WebPartTransformerCollection.cs
- LinearQuaternionKeyFrame.cs
- SafeIUnknown.cs