Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- Missing.cs
- InvalidCommandTreeException.cs
- LongTypeConverter.cs
- TemplateField.cs
- XPathDocumentNavigator.cs
- TemplatedMailWebEventProvider.cs
- SqlCommandSet.cs
- ExecutionContext.cs
- PaperSource.cs
- BevelBitmapEffect.cs
- ListViewItemSelectionChangedEvent.cs
- HtmlTable.cs
- Transform.cs
- FileSystemWatcher.cs
- DataGridItemCollection.cs
- WindowsGraphicsCacheManager.cs
- ConversionContext.cs
- SoapAttributeOverrides.cs
- DodSequenceMerge.cs
- SqlComparer.cs
- SoapTypeAttribute.cs
- NumberFormatter.cs
- CodeRegionDirective.cs
- NativeCppClassAttribute.cs
- XmlProcessingInstruction.cs
- Size.cs
- PersonalizationProviderHelper.cs
- JoinElimination.cs
- _HeaderInfo.cs
- FileRecordSequenceCompletedAsyncResult.cs
- BitmapEffectDrawingContent.cs
- BitmapDownload.cs
- SkinIDTypeConverter.cs
- _TimerThread.cs
- ByteKeyFrameCollection.cs
- KnownAssembliesSet.cs
- SQLInt32.cs
- UnionExpr.cs
- XmlElement.cs
- Win32SafeHandles.cs
- TerminateDesigner.cs
- WebPartHelpVerb.cs
- ListViewDataItem.cs
- SQLBoolean.cs
- FunctionParameter.cs
- BrowserDefinitionCollection.cs
- CurrentTimeZone.cs
- RegularExpressionValidator.cs
- IdentityHolder.cs
- CalendarDayButton.cs
- MapPathBasedVirtualPathProvider.cs
- BulletedListEventArgs.cs
- RawStylusInputCustomData.cs
- AppSettingsExpressionEditor.cs
- DataGridViewSelectedCellCollection.cs
- RelativeSource.cs
- PreviewPageInfo.cs
- ResourceCategoryAttribute.cs
- Process.cs
- UnmanagedHandle.cs
- HtmlHead.cs
- ReceiveContext.cs
- Enumerable.cs
- MonitorWrapper.cs
- SqlBulkCopyColumnMapping.cs
- ReferenceConverter.cs
- AccessText.cs
- LiteralText.cs
- RegexCaptureCollection.cs
- Drawing.cs
- ChannelFactoryRefCache.cs
- NavigationPropertyEmitter.cs
- UriTemplateTrieLocation.cs
- GenericEnumerator.cs
- PrimaryKeyTypeConverter.cs
- IDispatchConstantAttribute.cs
- WindowsTab.cs
- HttpProfileBase.cs
- RawKeyboardInputReport.cs
- CodeEventReferenceExpression.cs
- MatrixAnimationUsingPath.cs
- ZoomPercentageConverter.cs
- SiteMapDataSourceView.cs
- NameObjectCollectionBase.cs
- OperationAbortedException.cs
- CodeAttributeDeclarationCollection.cs
- XamlFilter.cs
- errorpatternmatcher.cs
- RuleSettings.cs
- PointF.cs
- PerfCounterSection.cs
- PersonalizableAttribute.cs
- TrailingSpaceComparer.cs
- DoubleSumAggregationOperator.cs
- ListDictionaryInternal.cs
- SecurityTokenSpecification.cs
- RootBrowserWindow.cs
- VirtualPath.cs
- RequiredAttributeAttribute.cs
- RoleService.cs