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
- FontDriver.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- ListViewTableCell.cs
- MSAANativeProvider.cs
- WsdlBuildProvider.cs
- UncommonField.cs
- BooleanSwitch.cs
- DocumentPageView.cs
- SecurityNegotiationException.cs
- FloatSumAggregationOperator.cs
- CustomErrorCollection.cs
- ElementUtil.cs
- StylusPointCollection.cs
- QilExpression.cs
- DataList.cs
- Pair.cs
- SectionVisual.cs
- BitmapSizeOptions.cs
- PageWrapper.cs
- EventProviderWriter.cs
- NameValueConfigurationCollection.cs
- ModifierKeysConverter.cs
- BitVec.cs
- XNodeValidator.cs
- ProbeDuplexCD1AsyncResult.cs
- PhotoPrintingIntent.cs
- SiteIdentityPermission.cs
- BindingMemberInfo.cs
- DataView.cs
- XmlSchemaObjectCollection.cs
- PartialList.cs
- SettingsAttributes.cs
- LogWriteRestartAreaState.cs
- Util.cs
- DragCompletedEventArgs.cs
- Matrix3DValueSerializer.cs
- DataBindingExpressionBuilder.cs
- Size3DConverter.cs
- IdleTimeoutMonitor.cs
- ErrorWebPart.cs
- HeaderCollection.cs
- SecUtil.cs
- EventMappingSettings.cs
- HighlightVisual.cs
- InputLanguage.cs
- PrivilegedConfigurationManager.cs
- FigureHelper.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- log.cs
- PolicyStatement.cs
- VectorCollectionValueSerializer.cs
- SignatureDescription.cs
- SmtpNtlmAuthenticationModule.cs
- DiscriminatorMap.cs
- LoginDesigner.cs
- EmbeddedMailObject.cs
- RegexTree.cs
- ImageSourceTypeConverter.cs
- RawTextInputReport.cs
- DependencyProperty.cs
- CollectionChangeEventArgs.cs
- TimelineGroup.cs
- _FtpControlStream.cs
- AttachmentCollection.cs
- PaperSize.cs
- ManagementOperationWatcher.cs
- SqlMethodTransformer.cs
- SQLBoolean.cs
- ScrollViewerAutomationPeer.cs
- SqlExpressionNullability.cs
- OrthographicCamera.cs
- AspNetSynchronizationContext.cs
- GridViewColumnHeader.cs
- ObjectQueryProvider.cs
- ByteRangeDownloader.cs
- DataRecordInternal.cs
- DashStyles.cs
- DeploymentSection.cs
- PrincipalPermission.cs
- Rect3DConverter.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- DriveInfo.cs
- EntitySqlException.cs
- DictionaryEntry.cs
- QueryPageSettingsEventArgs.cs
- WebBaseEventKeyComparer.cs
- RowsCopiedEventArgs.cs
- Bits.cs
- InstanceData.cs
- SystemInformation.cs
- JavaScriptSerializer.cs
- _CookieModule.cs
- OleDbMetaDataFactory.cs
- DoubleLink.cs
- XmlMemberMapping.cs
- Transform3DGroup.cs
- VisualTreeUtils.cs
- BinaryReader.cs
- PrimitiveSchema.cs
- WebPartsSection.cs