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
- EnlistmentTraceIdentifier.cs
- FontEditor.cs
- DetailsViewUpdatedEventArgs.cs
- FixedSOMTableCell.cs
- EntityParameterCollection.cs
- XmlQualifiedNameTest.cs
- HybridDictionary.cs
- _ProxyRegBlob.cs
- SmtpSection.cs
- BuildProviderUtils.cs
- MenuItemStyle.cs
- CultureInfoConverter.cs
- XmlQueryContext.cs
- MobileTextWriter.cs
- AdapterDictionary.cs
- XmlSchemaInclude.cs
- XmlNodeChangedEventArgs.cs
- LongValidatorAttribute.cs
- ConditionalAttribute.cs
- TemplateBuilder.cs
- ApplicationManager.cs
- MimeMapping.cs
- WorkflowMarkupSerializationException.cs
- UnsafeNativeMethodsTablet.cs
- TaskCanceledException.cs
- documentation.cs
- EventDescriptor.cs
- SqlDataSourceCustomCommandEditor.cs
- IERequestCache.cs
- DefaultMemberAttribute.cs
- RoutedPropertyChangedEventArgs.cs
- WebBrowserPermission.cs
- PersonalizationStateQuery.cs
- SystemUdpStatistics.cs
- NavigationProperty.cs
- TreeViewImageIndexConverter.cs
- ToolStripSeparatorRenderEventArgs.cs
- LinearGradientBrush.cs
- SqlConnectionString.cs
- NumberSubstitution.cs
- SettingsProperty.cs
- CompleteWizardStep.cs
- BitmapFrame.cs
- DocumentPageView.cs
- ExpressionBuilder.cs
- XmlSigningNodeWriter.cs
- SecurityContext.cs
- AssemblyAssociatedContentFileAttribute.cs
- ListControl.cs
- TextFormatter.cs
- PageTheme.cs
- Missing.cs
- EntitySet.cs
- _ContextAwareResult.cs
- SecurityProtocolCorrelationState.cs
- XmlDeclaration.cs
- EmissiveMaterial.cs
- NavigationCommands.cs
- nulltextcontainer.cs
- SubMenuStyle.cs
- Viewport3DAutomationPeer.cs
- TitleStyle.cs
- SamlNameIdentifierClaimResource.cs
- GridViewRowPresenterBase.cs
- ConditionalAttribute.cs
- Effect.cs
- CellPartitioner.cs
- ExtendedPropertyDescriptor.cs
- BasicHttpMessageCredentialType.cs
- AsyncDataRequest.cs
- NativeMethods.cs
- PrintingPermission.cs
- Section.cs
- OleDbCommand.cs
- CheckBoxAutomationPeer.cs
- DataViewManagerListItemTypeDescriptor.cs
- CellNormalizer.cs
- RequestNavigateEventArgs.cs
- Binding.cs
- DataContractSerializerOperationGenerator.cs
- AssociationEndMember.cs
- CodeObject.cs
- LingerOption.cs
- DebugView.cs
- ByteViewer.cs
- ReadOnlyTernaryTree.cs
- WizardPanelChangingEventArgs.cs
- PenThread.cs
- MethodAccessException.cs
- _SslState.cs
- CodeDirectiveCollection.cs
- ObjectResult.cs
- StateMachine.cs
- filewebrequest.cs
- XmlNamespaceDeclarationsAttribute.cs
- XmlAttributeAttribute.cs
- PassportAuthenticationModule.cs
- ApplicationBuildProvider.cs
- DesignerForm.cs
- EventOpcode.cs