Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / _HeaderInfo.cs / 1305376 / _HeaderInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { internal delegate string[] HeaderParser(string value); internal class HeaderInfo { internal readonly bool IsRequestRestricted; internal readonly bool IsResponseRestricted; internal readonly HeaderParser Parser; // // Note that the HeaderName field is not always valid, and should not // be used after initialization. In particular, the HeaderInfo returned // for an unknown header will not have the correct header name. // internal readonly string HeaderName; internal readonly bool AllowMultiValues; internal HeaderInfo(string name, bool requestRestricted, bool responseRestricted, bool multi, HeaderParser p) { HeaderName = name; IsRequestRestricted = requestRestricted; IsResponseRestricted = responseRestricted; Parser = p; AllowMultiValues = multi; } } } // namespace System.Net // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeArrayIndexerExpression.cs
- UnauthorizedAccessException.cs
- DesignerSerializationOptionsAttribute.cs
- WindowsPrincipal.cs
- util.cs
- RoutedEventValueSerializer.cs
- SiteMap.cs
- CollectionViewSource.cs
- UnsafeNativeMethods.cs
- EtwTrace.cs
- ProcessHostConfigUtils.cs
- InternalRelationshipCollection.cs
- RefExpr.cs
- SelectionUIHandler.cs
- XmlWriterSettings.cs
- BaseDataListActionList.cs
- EventLogStatus.cs
- PageWrapper.cs
- ServiceOperation.cs
- ViewGenerator.cs
- TrackingStringDictionary.cs
- BridgeDataRecord.cs
- XmlSchemaType.cs
- TableLayoutRowStyleCollection.cs
- OleDbFactory.cs
- HostingEnvironmentWrapper.cs
- KeyValuePair.cs
- DbConnectionInternal.cs
- BackStopAuthenticationModule.cs
- thaishape.cs
- BlockCollection.cs
- IndependentAnimationStorage.cs
- SQLMoneyStorage.cs
- FrameworkEventSource.cs
- StylusButtonCollection.cs
- AnyAllSearchOperator.cs
- VisualStyleElement.cs
- SpotLight.cs
- XPathAxisIterator.cs
- webbrowsersite.cs
- xdrvalidator.cs
- PartialCachingAttribute.cs
- CallbackHandler.cs
- SafeHandles.cs
- TypeConverter.cs
- SequenceDesignerAccessibleObject.cs
- ListCardsInFileRequest.cs
- ClientRoleProvider.cs
- AlignmentXValidation.cs
- Int64AnimationUsingKeyFrames.cs
- CompilationUnit.cs
- InspectionWorker.cs
- XmlReturnWriter.cs
- DbConnectionPoolGroupProviderInfo.cs
- CapabilitiesRule.cs
- ObjectRef.cs
- XmlSchemaSet.cs
- StrokeCollection.cs
- PageOutputQuality.cs
- FaultDesigner.cs
- UnsafeNativeMethods.cs
- cache.cs
- ProgressBarHighlightConverter.cs
- XmlQueryOutput.cs
- Adorner.cs
- SettingsSavedEventArgs.cs
- SafeViewOfFileHandle.cs
- SynchronizedDispatch.cs
- ServiceReference.cs
- SafeRightsManagementHandle.cs
- SqlBooleanMismatchVisitor.cs
- ApplicationGesture.cs
- Array.cs
- DateTimeUtil.cs
- PenThreadWorker.cs
- StaticContext.cs
- CellRelation.cs
- StrokeCollection.cs
- FaultFormatter.cs
- ModelService.cs
- InstancePersistence.cs
- storepermission.cs
- ServerTooBusyException.cs
- PostBackTrigger.cs
- TextBoxAutoCompleteSourceConverter.cs
- Latin1Encoding.cs
- SplineKeyFrames.cs
- RecordBuilder.cs
- UnicastIPAddressInformationCollection.cs
- UrlAuthFailedErrorFormatter.cs
- PeerContact.cs
- CustomExpressionEventArgs.cs
- TemplateDefinition.cs
- DBConcurrencyException.cs
- SamlSubjectStatement.cs
- PropertyInformationCollection.cs
- DataGridViewColumnConverter.cs
- InstancePersistenceContext.cs
- RectangleGeometry.cs
- FieldBuilder.cs