Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- MD5CryptoServiceProvider.cs
- RangeValueProviderWrapper.cs
- PathFigureCollectionValueSerializer.cs
- SimpleBitVector32.cs
- SafeNativeMethodsMilCoreApi.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- AnnotationResource.cs
- EnvelopedPkcs7.cs
- BitmapEffectrendercontext.cs
- XmlSchemaType.cs
- VScrollBar.cs
- localization.cs
- TableLayoutPanel.cs
- DbReferenceCollection.cs
- EntityViewGenerator.cs
- SoapFormatExtensions.cs
- SingleResultAttribute.cs
- ClientFactory.cs
- BamlRecordWriter.cs
- HtmlTableRowCollection.cs
- FontFamily.cs
- RegexWorker.cs
- ProxyAttribute.cs
- IFormattable.cs
- DesignerDataColumn.cs
- AssemblyHash.cs
- SecurityKeyUsage.cs
- DataGridViewComponentPropertyGridSite.cs
- TextServicesDisplayAttribute.cs
- WebSysDescriptionAttribute.cs
- CodeAccessPermission.cs
- KeyPullup.cs
- HtmlButton.cs
- RectIndependentAnimationStorage.cs
- MultiBindingExpression.cs
- FloaterBaseParagraph.cs
- Switch.cs
- KeyboardDevice.cs
- UInt32Converter.cs
- PrivacyNoticeElement.cs
- DataGridAutomationPeer.cs
- AccessViolationException.cs
- MetricEntry.cs
- InstancePersistenceCommand.cs
- AppDomain.cs
- SuppressMessageAttribute.cs
- WithStatement.cs
- ControlBindingsCollection.cs
- Canvas.cs
- TextBox.cs
- Storyboard.cs
- MarkupProperty.cs
- Matrix3DValueSerializer.cs
- FontUnit.cs
- Location.cs
- WriteFileContext.cs
- WorkflowServiceAttributes.cs
- EventProviderBase.cs
- BitmapEffectCollection.cs
- PaginationProgressEventArgs.cs
- SafeHandles.cs
- VarRemapper.cs
- EditorPartCollection.cs
- DropShadowEffect.cs
- DependencyObject.cs
- PersonalizationDictionary.cs
- SerializationInfoEnumerator.cs
- HtmlTextArea.cs
- FontStretch.cs
- ClientTargetSection.cs
- StrokeNodeData.cs
- GeometryHitTestResult.cs
- AesCryptoServiceProvider.cs
- EmbossBitmapEffect.cs
- ResourceIDHelper.cs
- FormatStringEditor.cs
- StoreUtilities.cs
- FocusWithinProperty.cs
- DifferencingCollection.cs
- RecordConverter.cs
- TextServicesLoader.cs
- RowBinding.cs
- DetailsViewInsertEventArgs.cs
- ReadOnlyHierarchicalDataSource.cs
- DynamicDataManager.cs
- LogicalExpressionEditor.cs
- SingleSelectRootGridEntry.cs
- TemplateColumn.cs
- HealthMonitoringSectionHelper.cs
- CompositeControlDesigner.cs
- GenericsInstances.cs
- Attachment.cs
- BitmapCacheBrush.cs
- BinHexDecoder.cs
- CodeDirectoryCompiler.cs
- ParagraphVisual.cs
- CommunicationException.cs
- ViewStateModeByIdAttribute.cs
- Expr.cs
- DataControlFieldsEditor.cs