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
- Bitmap.cs
- GridView.cs
- PageAsyncTask.cs
- Geometry3D.cs
- ToolBarTray.cs
- WindowsListView.cs
- MediaElement.cs
- DataBinder.cs
- SoundPlayerAction.cs
- ZipPackage.cs
- DnsCache.cs
- HwndStylusInputProvider.cs
- XmlKeywords.cs
- IdnElement.cs
- ColorAnimationBase.cs
- TextRangeEdit.cs
- XmlSchemas.cs
- BinaryReader.cs
- HighlightVisual.cs
- ObjectReaderCompiler.cs
- QilInvoke.cs
- AmbientProperties.cs
- EncryptedXml.cs
- SingleAnimationUsingKeyFrames.cs
- HTTPAPI_VERSION.cs
- DayRenderEvent.cs
- SessionEndingCancelEventArgs.cs
- FtpCachePolicyElement.cs
- ExtensionElement.cs
- InstancePersistenceCommandException.cs
- EventLogger.cs
- Range.cs
- XmlWhitespace.cs
- VirtualDirectoryMappingCollection.cs
- OracleConnectionStringBuilder.cs
- NegatedConstant.cs
- AlphaSortedEnumConverter.cs
- ListManagerBindingsCollection.cs
- ToolBarButton.cs
- XmlSchemaType.cs
- CacheSection.cs
- UnicastIPAddressInformationCollection.cs
- EncryptedType.cs
- SortedDictionary.cs
- FileRegion.cs
- SelectionListComponentEditor.cs
- BlurBitmapEffect.cs
- KoreanLunisolarCalendar.cs
- DiffuseMaterial.cs
- StaticExtension.cs
- PageHandlerFactory.cs
- XmlDataSourceNodeDescriptor.cs
- DataServiceRequest.cs
- ConstraintCollection.cs
- WebContentFormatHelper.cs
- CodeObject.cs
- PanningMessageFilter.cs
- SocketException.cs
- MemberMaps.cs
- Polyline.cs
- QueryOperatorEnumerator.cs
- XamlSerializerUtil.cs
- XmlSchemaValidator.cs
- SqlDelegatedTransaction.cs
- storepermission.cs
- UnsafeMethods.cs
- RotateTransform3D.cs
- DelegatingTypeDescriptionProvider.cs
- SrgsGrammarCompiler.cs
- ListArgumentProvider.cs
- AutoResetEvent.cs
- EventSetter.cs
- RichTextBoxContextMenu.cs
- RestHandlerFactory.cs
- XmlAnyAttributeAttribute.cs
- LinkedDataMemberFieldEditor.cs
- FilteredReadOnlyMetadataCollection.cs
- StartUpEventArgs.cs
- ProcessInfo.cs
- TextServicesProperty.cs
- TargetInvocationException.cs
- ExtenderControl.cs
- SRGSCompiler.cs
- RelationshipConstraintValidator.cs
- DynamicQueryableWrapper.cs
- BitmapImage.cs
- BufferAllocator.cs
- ApplicationProxyInternal.cs
- AudioSignalProblemOccurredEventArgs.cs
- HttpRequestMessageProperty.cs
- JsonWriterDelegator.cs
- SpanIndex.cs
- HtmlWindow.cs
- StatusBarItem.cs
- IgnoreSectionHandler.cs
- WMIGenerator.cs
- FilterException.cs
- Path.cs
- PathFigureCollectionValueSerializer.cs
- TraceSection.cs