Code:
/ DotNET / DotNET / 8.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
- LeafCellTreeNode.cs
- BinaryConverter.cs
- SaveFileDialogDesigner.cs
- SizeAnimationBase.cs
- AsyncPostBackTrigger.cs
- FutureFactory.cs
- RectAnimation.cs
- TaskForm.cs
- ServiceHostFactory.cs
- IPAddress.cs
- UnhandledExceptionEventArgs.cs
- CommonDialog.cs
- SafeHGlobalHandleCritical.cs
- OutputCacheProfile.cs
- EntityParameter.cs
- _SslSessionsCache.cs
- ParseElementCollection.cs
- Rights.cs
- ChannelSettingsElement.cs
- SemaphoreSecurity.cs
- Config.cs
- DBConnection.cs
- MultiTargetingUtil.cs
- SQLGuidStorage.cs
- Point.cs
- SqlMethods.cs
- _SafeNetHandles.cs
- ObjectListShowCommandsEventArgs.cs
- SystemResources.cs
- FormsAuthenticationModule.cs
- NullRuntimeConfig.cs
- StdValidatorsAndConverters.cs
- BasePropertyDescriptor.cs
- ToolTipService.cs
- ItemContainerPattern.cs
- TypeLoadException.cs
- CharAnimationUsingKeyFrames.cs
- AppDomain.cs
- ProfileBuildProvider.cs
- newinstructionaction.cs
- OdbcConnectionOpen.cs
- FileVersionInfo.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- DataObject.cs
- CryptographicAttribute.cs
- TimeStampChecker.cs
- CompilerState.cs
- QilList.cs
- RequestChannel.cs
- SafeTimerHandle.cs
- AccessibleObject.cs
- ApplicationTrust.cs
- ResourceExpressionBuilder.cs
- InkCanvasSelection.cs
- TextDataBindingHandler.cs
- SqlGatherConsumedAliases.cs
- assertwrapper.cs
- PeerFlooder.cs
- AppDomainFactory.cs
- Section.cs
- CollectionsUtil.cs
- ScrollChangedEventArgs.cs
- GridViewRowPresenter.cs
- FormClosedEvent.cs
- WorkflowWebHostingModule.cs
- iisPickupDirectory.cs
- CodeFieldReferenceExpression.cs
- TextServicesLoader.cs
- Compiler.cs
- PrePrepareMethodAttribute.cs
- SliderAutomationPeer.cs
- CodeConstructor.cs
- SelectionWordBreaker.cs
- SafeLocalAllocation.cs
- Win32KeyboardDevice.cs
- ProcessHostMapPath.cs
- WindowsAuthenticationEventArgs.cs
- Wizard.cs
- RowToParametersTransformer.cs
- MexNamedPipeBindingElement.cs
- Page.cs
- Preprocessor.cs
- EntitySet.cs
- WebPartZoneBase.cs
- Rect3D.cs
- NavigationWindow.cs
- mediaeventargs.cs
- FileDialogPermission.cs
- PropertyInformation.cs
- EdmScalarPropertyAttribute.cs
- PartialCachingControl.cs
- PeerInvitationResponse.cs
- XmlDomTextWriter.cs
- ClientConfigPaths.cs
- ProbeMatches11.cs
- ProcessModule.cs
- OSFeature.cs
- XPathNodeInfoAtom.cs
- BindingList.cs
- WebPartDescriptionCollection.cs