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
- TextFragmentEngine.cs
- StaticSiteMapProvider.cs
- FileChangesMonitor.cs
- KeyNotFoundException.cs
- HtmlEncodedRawTextWriter.cs
- ColorPalette.cs
- DBDataPermission.cs
- ConfigurationStrings.cs
- TransformerInfoCollection.cs
- WeakReferenceKey.cs
- DataGridParentRows.cs
- CodeGroup.cs
- CacheForPrimitiveTypes.cs
- ExpressionSelection.cs
- GridViewDeletedEventArgs.cs
- CustomCategoryAttribute.cs
- ZoneMembershipCondition.cs
- Symbol.cs
- DataGridViewCellValidatingEventArgs.cs
- ResourceDefaultValueAttribute.cs
- MsmqIntegrationProcessProtocolHandler.cs
- Mappings.cs
- TemplateXamlTreeBuilder.cs
- SortedList.cs
- ExpressionHelper.cs
- WindowsSysHeader.cs
- TypefaceMap.cs
- AddInIpcChannel.cs
- Selector.cs
- thaishape.cs
- LinkButton.cs
- ConfigUtil.cs
- ThreadWorkerController.cs
- HuffmanTree.cs
- HttpCapabilitiesBase.cs
- _FixedSizeReader.cs
- LambdaCompiler.Unary.cs
- PersonalizablePropertyEntry.cs
- Expressions.cs
- ApplicationDirectoryMembershipCondition.cs
- GroupQuery.cs
- ZipIOLocalFileDataDescriptor.cs
- OleAutBinder.cs
- DbConnectionHelper.cs
- AuthenticationManager.cs
- CacheSection.cs
- SizeChangedInfo.cs
- _CommandStream.cs
- XdrBuilder.cs
- BulletedListEventArgs.cs
- CharacterMetricsDictionary.cs
- DotExpr.cs
- EnumType.cs
- RNGCryptoServiceProvider.cs
- QilInvoke.cs
- PerformanceCountersBase.cs
- ConstructorArgumentAttribute.cs
- Container.cs
- DeobfuscatingStream.cs
- SpeechEvent.cs
- ToolStripLocationCancelEventArgs.cs
- TextPattern.cs
- FixedTextPointer.cs
- HttpListenerException.cs
- EmptyCollection.cs
- InternalControlCollection.cs
- InstanceNormalEvent.cs
- HttpProcessUtility.cs
- TypeListConverter.cs
- CodeGen.cs
- ConstraintCollection.cs
- HMACSHA512.cs
- CorrelationInitializer.cs
- IntSecurity.cs
- EdmComplexPropertyAttribute.cs
- FilterQueryOptionExpression.cs
- TextParaLineResult.cs
- ComNativeDescriptor.cs
- SqlFileStream.cs
- SmtpNegotiateAuthenticationModule.cs
- TypeConverterValueSerializer.cs
- TreePrinter.cs
- Root.cs
- FormViewDeleteEventArgs.cs
- SafeArrayTypeMismatchException.cs
- RequestQueue.cs
- ReferencedCollectionType.cs
- DataServiceRequestException.cs
- DataPagerFieldCollection.cs
- AuthenticationModuleElement.cs
- SafeSecurityHandles.cs
- ListCardsInFileRequest.cs
- LambdaCompiler.Generated.cs
- XmlConvert.cs
- RegexRunnerFactory.cs
- SerializerWriterEventHandlers.cs
- RadioButtonAutomationPeer.cs
- DispatcherFrame.cs
- Opcode.cs
- SplineQuaternionKeyFrame.cs