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
- RedistVersionInfo.cs
- NotImplementedException.cs
- ListManagerBindingsCollection.cs
- DesignTimeValidationFeature.cs
- IgnorePropertiesAttribute.cs
- DynamicControl.cs
- Stopwatch.cs
- TypeConverterHelper.cs
- DataGridViewAccessibleObject.cs
- CharacterBuffer.cs
- PrintPreviewDialog.cs
- ListView.cs
- PackageDigitalSignature.cs
- Button.cs
- mda.cs
- AutomationElementIdentifiers.cs
- RegexWriter.cs
- PointUtil.cs
- StrongNameKeyPair.cs
- ColorInterpolationModeValidation.cs
- StickyNote.cs
- SimpleRecyclingCache.cs
- TextRangeProviderWrapper.cs
- ButtonRenderer.cs
- TypeSchema.cs
- ScrollBarRenderer.cs
- BlurBitmapEffect.cs
- Int16.cs
- WebCategoryAttribute.cs
- AutoGeneratedField.cs
- __Filters.cs
- LineSegment.cs
- ZipIOFileItemStream.cs
- AliasExpr.cs
- SqlMethodAttribute.cs
- _NtlmClient.cs
- RichTextBox.cs
- EditingMode.cs
- String.cs
- TransportSecurityBindingElement.cs
- SortKey.cs
- TimeZone.cs
- WriterOutput.cs
- AmbientLight.cs
- MetadataArtifactLoaderComposite.cs
- SHA512CryptoServiceProvider.cs
- NetworkCredential.cs
- Validator.cs
- TextComposition.cs
- MenuItemBinding.cs
- DataListAutoFormat.cs
- Base64Encoder.cs
- DesignerCategoryAttribute.cs
- ViewBox.cs
- NameNode.cs
- WhitespaceSignificantCollectionAttribute.cs
- securitycriticaldata.cs
- X509Utils.cs
- OpacityConverter.cs
- invalidudtexception.cs
- _SpnDictionary.cs
- IdleTimeoutMonitor.cs
- InvokerUtil.cs
- ExpressionEditorAttribute.cs
- WebEventTraceProvider.cs
- Instrumentation.cs
- DisplayInformation.cs
- MtomMessageEncodingElement.cs
- ConfigurationSectionCollection.cs
- FontCacheLogic.cs
- Rect3DConverter.cs
- ProtocolElementCollection.cs
- followingsibling.cs
- SafeReadContext.cs
- PtsHost.cs
- TreeBuilderXamlTranslator.cs
- NavigationService.cs
- XmlIncludeAttribute.cs
- UniformGrid.cs
- Dynamic.cs
- CurrencyWrapper.cs
- _RegBlobWebProxyDataBuilder.cs
- AVElementHelper.cs
- RawTextInputReport.cs
- MarshalByValueComponent.cs
- RichTextBox.cs
- SQLUtility.cs
- storepermissionattribute.cs
- BaseProcessProtocolHandler.cs
- ImpersonationContext.cs
- CellPartitioner.cs
- StrongNamePublicKeyBlob.cs
- Evidence.cs
- ObjectAnimationUsingKeyFrames.cs
- WorkflowMarkupSerializationProvider.cs
- SequentialWorkflowHeaderFooter.cs
- TickBar.cs
- OdbcCommand.cs
- DataGridViewCheckBoxCell.cs
- SystemColors.cs