Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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;} } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- _Rfc2616CacheValidators.cs
- ToolZone.cs
- ScriptIgnoreAttribute.cs
- ListCollectionView.cs
- MessageDesigner.cs
- DigestComparer.cs
- DataTrigger.cs
- CryptoConfig.cs
- InfoCardPolicy.cs
- SerializationInfoEnumerator.cs
- AnnotationResourceCollection.cs
- CodeRegionDirective.cs
- ContainerParagraph.cs
- SchemaNotation.cs
- UnSafeCharBuffer.cs
- SmtpException.cs
- WebScriptMetadataFormatter.cs
- HandoffBehavior.cs
- IdentityReference.cs
- SymbolMethod.cs
- SQLMoney.cs
- MemberRelationshipService.cs
- SoapExtensionImporter.cs
- OrderedDictionary.cs
- parserscommon.cs
- Activity.cs
- ChameleonKey.cs
- XmlDataContract.cs
- HeaderCollection.cs
- SessionEndedEventArgs.cs
- MethodAccessException.cs
- TextSyndicationContent.cs
- RectKeyFrameCollection.cs
- UIElementAutomationPeer.cs
- PointCollection.cs
- ClientScriptManager.cs
- SafeLocalMemHandle.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- DeflateStreamAsyncResult.cs
- ConsumerConnectionPoint.cs
- Point3DAnimationBase.cs
- WebPartDisplayModeEventArgs.cs
- CodeExpressionCollection.cs
- CompatibleIComparer.cs
- GiveFeedbackEvent.cs
- SystemFonts.cs
- RedBlackList.cs
- FlowDocument.cs
- HorizontalAlignConverter.cs
- BitmapPalettes.cs
- TextParagraphCache.cs
- PasswordRecoveryDesigner.cs
- KeyInterop.cs
- PenThreadWorker.cs
- OleDbRowUpdatingEvent.cs
- OdbcConnectionFactory.cs
- CLRBindingWorker.cs
- SystemIPInterfaceStatistics.cs
- _Rfc2616CacheValidators.cs
- HttpCachePolicyElement.cs
- ListBox.cs
- RayMeshGeometry3DHitTestResult.cs
- GorillaCodec.cs
- EventProviderWriter.cs
- WpfMemberInvoker.cs
- Size3D.cs
- SafeSecurityHelper.cs
- ConfigurationFileMap.cs
- RMPermissions.cs
- MouseEventArgs.cs
- DataSvcMapFileSerializer.cs
- TCPListener.cs
- autovalidator.cs
- _HeaderInfoTable.cs
- LockRecoveryTask.cs
- SmiEventSink_Default.cs
- QueryRewriter.cs
- MetadataWorkspace.cs
- ContextMenuStripGroupCollection.cs
- BridgeDataRecord.cs
- PropertyGridCommands.cs
- TrackingQuery.cs
- ScrollChrome.cs
- PageStatePersister.cs
- FontWeight.cs
- SqlDataAdapter.cs
- RegularExpressionValidator.cs
- TypeLoadException.cs
- InvokeHandlers.cs
- MiniCustomAttributeInfo.cs
- WindowsListViewItemCheckBox.cs
- DataSourceProvider.cs
- UInt32.cs
- ViewPort3D.cs
- IconBitmapDecoder.cs
- FileInfo.cs
- XmlRawWriter.cs
- EndpointInstanceProvider.cs
- MemberNameValidator.cs
- CodeNamespaceImportCollection.cs