Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / HttpRawResponse.cs / 3 / 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OleDbTransaction.cs
- sqlinternaltransaction.cs
- HitTestWithPointDrawingContextWalker.cs
- PageThemeBuildProvider.cs
- SizeConverter.cs
- DigitalSignatureProvider.cs
- SimpleMailWebEventProvider.cs
- NativeRightsManagementAPIsStructures.cs
- PtsContext.cs
- Processor.cs
- ActiveXContainer.cs
- ListBoxItemAutomationPeer.cs
- Material.cs
- PointConverter.cs
- TimeSpanValidatorAttribute.cs
- FileDialogPermission.cs
- TypeName.cs
- cache.cs
- PrimitiveType.cs
- AccessText.cs
- ScrollEvent.cs
- DataGridRowClipboardEventArgs.cs
- Rotation3DAnimationBase.cs
- Process.cs
- SQLRoleProvider.cs
- DefaultParameterValueAttribute.cs
- IConvertible.cs
- SafeArrayRankMismatchException.cs
- input.cs
- NopReturnReader.cs
- EndOfStreamException.cs
- FixedFindEngine.cs
- SafeRegistryKey.cs
- WindowPattern.cs
- ValueCollectionParameterReader.cs
- PieceNameHelper.cs
- Graphics.cs
- MethodAccessException.cs
- PriorityChain.cs
- MeshGeometry3D.cs
- NavigationPropertyEmitter.cs
- SpeakInfo.cs
- PassportAuthentication.cs
- ExpiredSecurityTokenException.cs
- SignatureDescription.cs
- WorkflowServiceHostFactory.cs
- EntityDataSourceUtil.cs
- SiteMapHierarchicalDataSourceView.cs
- Paragraph.cs
- HttpModuleActionCollection.cs
- WmlCalendarAdapter.cs
- SqlConnectionFactory.cs
- DependencyPropertyValueSerializer.cs
- EventMap.cs
- DynamicDocumentPaginator.cs
- HashSet.cs
- ItemList.cs
- ActivityBuilderXamlWriter.cs
- Bitmap.cs
- MenuCommand.cs
- HttpAsyncResult.cs
- TryLoadRunnableWorkflowCommand.cs
- _ListenerResponseStream.cs
- FlowDocumentScrollViewer.cs
- BinaryReader.cs
- WebPartMenu.cs
- ServerValidateEventArgs.cs
- ProcessManager.cs
- HWStack.cs
- JapaneseCalendar.cs
- RecognitionEventArgs.cs
- WebBrowserSiteBase.cs
- RadioButtonList.cs
- MailWebEventProvider.cs
- SimpleLine.cs
- CachedTypeface.cs
- TextCollapsingProperties.cs
- CustomWebEventKey.cs
- HttpDateParse.cs
- SoapObjectReader.cs
- PersistStreamTypeWrapper.cs
- TableParagraph.cs
- RuleDefinitions.cs
- PropertyEmitterBase.cs
- ChannelPoolSettings.cs
- Bidi.cs
- Activator.cs
- Attribute.cs
- SqlMultiplexer.cs
- Psha1DerivedKeyGenerator.cs
- HostVisual.cs
- UnsafeNativeMethods.cs
- TreeBuilder.cs
- SoapDocumentServiceAttribute.cs
- Serialization.cs
- TextTreeUndo.cs
- TextEndOfParagraph.cs
- ValuePattern.cs
- WeakEventManager.cs
- HttpResponseInternalWrapper.cs