Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / HttpRawResponse.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TrackingStringDictionary.cs
- RootCodeDomSerializer.cs
- XmlDataProvider.cs
- TextDecorations.cs
- ExtenderProviderService.cs
- ParseChildrenAsPropertiesAttribute.cs
- OleDbParameterCollection.cs
- ColorTransform.cs
- GridViewSortEventArgs.cs
- ActiveXContainer.cs
- ComplexObject.cs
- Point3DIndependentAnimationStorage.cs
- WorkflowServiceAttributes.cs
- SchemaInfo.cs
- SkewTransform.cs
- MethodBody.cs
- XmlSchemaSet.cs
- DiscoveryUtility.cs
- AnnotationResourceChangedEventArgs.cs
- PropertySegmentSerializer.cs
- Random.cs
- TextBoxView.cs
- StrongNameMembershipCondition.cs
- HandledEventArgs.cs
- HttpAsyncResult.cs
- CacheRequest.cs
- ListBox.cs
- dataprotectionpermissionattribute.cs
- SqlTypeConverter.cs
- SID.cs
- RectAnimationUsingKeyFrames.cs
- MemoryStream.cs
- BufferBuilder.cs
- ConstNode.cs
- BrowserCapabilitiesFactory.cs
- DataViewSettingCollection.cs
- SendParametersContent.cs
- RawStylusInput.cs
- HandleCollector.cs
- SplitContainer.cs
- RowParagraph.cs
- DocumentApplicationJournalEntry.cs
- WebColorConverter.cs
- dsa.cs
- BooleanExpr.cs
- ResXResourceSet.cs
- BezierSegment.cs
- HttpModuleCollection.cs
- TraceHandlerErrorFormatter.cs
- QilFactory.cs
- SafeFindHandle.cs
- NamedPipeProcessProtocolHandler.cs
- FileRecordSequenceCompletedAsyncResult.cs
- BrowserInteropHelper.cs
- EntityDataSourceViewSchema.cs
- Registry.cs
- TransactionFlowBindingElement.cs
- HttpApplication.cs
- SByte.cs
- XmlValidatingReaderImpl.cs
- WebPartUtil.cs
- FileEnumerator.cs
- Set.cs
- RSAOAEPKeyExchangeDeformatter.cs
- Query.cs
- ToolboxItem.cs
- TemplateControlParser.cs
- WindowsFormsHost.cs
- commandenforcer.cs
- GraphicsPathIterator.cs
- ComplexObject.cs
- ThreadExceptionEvent.cs
- PointLight.cs
- UnitySerializationHolder.cs
- AttributeQuery.cs
- GlobalizationAssembly.cs
- XPathNodeInfoAtom.cs
- OutgoingWebRequestContext.cs
- DataGridViewTopLeftHeaderCell.cs
- CalendarButtonAutomationPeer.cs
- MetadataCollection.cs
- SmtpAuthenticationManager.cs
- CapabilitiesPattern.cs
- ListViewInsertedEventArgs.cs
- ZipIOCentralDirectoryFileHeader.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- xmlsaver.cs
- MediaTimeline.cs
- Bitmap.cs
- EntityDesignerBuildProvider.cs
- ResourceSet.cs
- FileDialog_Vista_Interop.cs
- SmtpFailedRecipientException.cs
- Bitmap.cs
- HttpModuleCollection.cs
- AddingNewEventArgs.cs
- TransformDescriptor.cs
- StructureChangedEventArgs.cs
- CallSiteHelpers.cs
- PropertyValueEditor.cs