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
- TranslateTransform3D.cs
- ProfileProvider.cs
- Inflater.cs
- KeyFrames.cs
- ExtractedStateEntry.cs
- ConfigXmlWhitespace.cs
- UIElementParagraph.cs
- AnnotationResourceCollection.cs
- SchemaNotation.cs
- CollectionContainer.cs
- IsolationInterop.cs
- DefaultValueConverter.cs
- WmlSelectionListAdapter.cs
- ScaleTransform.cs
- XsdCachingReader.cs
- ErrorWebPart.cs
- DataGridAutoFormat.cs
- ReverseInheritProperty.cs
- sqlcontext.cs
- SessionIDManager.cs
- BrowserDefinitionCollection.cs
- ConsumerConnectionPointCollection.cs
- OperationAbortedException.cs
- SQLInt32Storage.cs
- MailMessage.cs
- SqlGenerator.cs
- GridViewColumnCollection.cs
- StringUtil.cs
- RelationshipEndCollection.cs
- ExtendedProperty.cs
- BitmapEffectGeneralTransform.cs
- ByteViewer.cs
- OdbcException.cs
- TypeUnloadedException.cs
- SafeNativeMethodsMilCoreApi.cs
- StatusBarAutomationPeer.cs
- TypeConverters.cs
- InvalidOperationException.cs
- CellQuery.cs
- dtdvalidator.cs
- DataTablePropertyDescriptor.cs
- Animatable.cs
- RemoteWebConfigurationHostStream.cs
- StaticExtensionConverter.cs
- EdmPropertyAttribute.cs
- NameValueConfigurationElement.cs
- OrderedDictionary.cs
- Menu.cs
- EditorZone.cs
- ToolStripItemRenderEventArgs.cs
- XamlParser.cs
- ManipulationCompletedEventArgs.cs
- FontClient.cs
- DocumentOrderQuery.cs
- LongValidatorAttribute.cs
- EndpointAddressProcessor.cs
- LiteralControl.cs
- UidManager.cs
- __TransparentProxy.cs
- BitmapEffectDrawingContextWalker.cs
- DirectoryRootQuery.cs
- ComplusEndpointConfigContainer.cs
- Image.cs
- ConfigXmlDocument.cs
- ConnectivityStatus.cs
- VersionUtil.cs
- Overlapped.cs
- TableLayoutCellPaintEventArgs.cs
- DataGridViewCellValidatingEventArgs.cs
- UserControl.cs
- UnsafeNativeMethods.cs
- IncrementalReadDecoders.cs
- DataServiceClientException.cs
- SqlConnectionFactory.cs
- LogEntryHeaderDeserializer.cs
- IntPtr.cs
- BodyGlyph.cs
- ParentUndoUnit.cs
- StringConverter.cs
- TransformerTypeCollection.cs
- UnhandledExceptionEventArgs.cs
- GenerateTemporaryAssemblyTask.cs
- CustomMenuItemCollection.cs
- BooleanAnimationBase.cs
- ScrollData.cs
- AlignmentYValidation.cs
- SymbolType.cs
- LongTypeConverter.cs
- SchemaComplexType.cs
- JsonDeserializer.cs
- ReadOnlyTernaryTree.cs
- ServiceOperationParameter.cs
- VoiceChangeEventArgs.cs
- IisTraceWebEventProvider.cs
- XmlSchemaSimpleType.cs
- CollectionViewGroupInternal.cs
- LocalizationParserHooks.cs
- TraceSwitch.cs
- URLMembershipCondition.cs
- Transform3DGroup.cs