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
- WebScriptServiceHost.cs
- ellipse.cs
- CacheOutputQuery.cs
- IdentityHolder.cs
- XPathDocumentBuilder.cs
- securestring.cs
- Timer.cs
- XmlAttributeOverrides.cs
- HierarchicalDataSourceDesigner.cs
- BlurBitmapEffect.cs
- ManagementPath.cs
- XmlToDatasetMap.cs
- GenericAuthenticationEventArgs.cs
- DataGridViewLinkCell.cs
- RowUpdatingEventArgs.cs
- System.Data.OracleClient_BID.cs
- ReturnValue.cs
- AccessibilityApplicationManager.cs
- DaylightTime.cs
- DataStreams.cs
- TypeToTreeConverter.cs
- BaseTreeIterator.cs
- Registry.cs
- ConfigXmlWhitespace.cs
- ISO2022Encoding.cs
- PageThemeCodeDomTreeGenerator.cs
- XmlElementAttribute.cs
- RadioButton.cs
- AlphabeticalEnumConverter.cs
- CngProvider.cs
- UIElementParagraph.cs
- UrlPropertyAttribute.cs
- HostingEnvironmentWrapper.cs
- HttpHandlerAction.cs
- DescendantBaseQuery.cs
- SqlDataSource.cs
- ZipIORawDataFileBlock.cs
- FixedHyperLink.cs
- MiniParameterInfo.cs
- XmlSerializer.cs
- ImageAnimator.cs
- WindowsListViewItem.cs
- UserUseLicenseDictionaryLoader.cs
- BrowserCapabilitiesFactory.cs
- SafePointer.cs
- BitmapFrame.cs
- CircleHotSpot.cs
- PipelineModuleStepContainer.cs
- LazyTextWriterCreator.cs
- ArgumentValue.cs
- DataGridViewToolTip.cs
- CommonProperties.cs
- ImageFormat.cs
- WindowsListViewItemCheckBox.cs
- WindowsToolbarAsMenu.cs
- FileLogRecordEnumerator.cs
- WebPartCollection.cs
- MetaTable.cs
- MetaModel.cs
- ChannelProtectionRequirements.cs
- PointLight.cs
- SettingsPropertyWrongTypeException.cs
- PageEventArgs.cs
- StringResourceManager.cs
- MailWebEventProvider.cs
- SchemaMapping.cs
- RangeBaseAutomationPeer.cs
- LocalIdKeyIdentifierClause.cs
- KeyboardEventArgs.cs
- SimpleParser.cs
- ExclusiveTcpListener.cs
- WsdlInspector.cs
- KeyNotFoundException.cs
- MembershipSection.cs
- ListManagerBindingsCollection.cs
- ContextMarshalException.cs
- WebBrowserContainer.cs
- MailDefinition.cs
- StylusPlugin.cs
- PointConverter.cs
- Typography.cs
- HideDisabledControlAdapter.cs
- PopOutPanel.cs
- WebProxyScriptElement.cs
- PropertyCollection.cs
- EntityDataSourceStatementEditorForm.cs
- SecUtil.cs
- ValueTable.cs
- GeometryHitTestParameters.cs
- TypeBrowser.xaml.cs
- JsonDeserializer.cs
- ObjectMemberMapping.cs
- ToolStripSeparatorRenderEventArgs.cs
- PolicyChain.cs
- DecimalFormatter.cs
- SqlAggregateChecker.cs
- SimpleWorkerRequest.cs
- ServiceModelActivationSectionGroup.cs
- SqlDataSource.cs
- AudioException.cs