Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / _HeaderInfo.cs / 1 / _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
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Error.cs
- CustomWebEventKey.cs
- ConstrainedDataObject.cs
- CollectionBuilder.cs
- IRCollection.cs
- ConfigXmlWhitespace.cs
- connectionpool.cs
- PathTooLongException.cs
- DataGrid.cs
- ReturnValue.cs
- DefaultBinder.cs
- DataGridViewLayoutData.cs
- StorageAssociationTypeMapping.cs
- ScrollItemPattern.cs
- FaultReason.cs
- ProviderSettings.cs
- SqlNotificationEventArgs.cs
- securitycriticaldata.cs
- XmlRawWriterWrapper.cs
- TransportSecurityProtocol.cs
- KeyTimeConverter.cs
- DataControlButton.cs
- BitmapCodecInfoInternal.cs
- DbExpressionVisitor_TResultType.cs
- TextCompositionManager.cs
- BitmapSource.cs
- InheritanceContextChangedEventManager.cs
- Queue.cs
- WasEndpointConfigContainer.cs
- XPathAncestorIterator.cs
- EmbeddedObject.cs
- WinFormsUtils.cs
- StrokeDescriptor.cs
- SharedHttpTransportManager.cs
- MobileControlBuilder.cs
- SecurityValidationBehavior.cs
- WebPartPersonalization.cs
- CodeMethodReturnStatement.cs
- ColumnResizeUndoUnit.cs
- RequestCacheValidator.cs
- BrushMappingModeValidation.cs
- XmlDocument.cs
- SmtpReplyReaderFactory.cs
- LostFocusEventManager.cs
- ConfigXmlSignificantWhitespace.cs
- DebugView.cs
- RegexMatch.cs
- _HTTPDateParse.cs
- Columns.cs
- CodeRemoveEventStatement.cs
- Int16AnimationUsingKeyFrames.cs
- SelectionProcessor.cs
- PreProcessor.cs
- MissingSatelliteAssemblyException.cs
- MailMessage.cs
- GridLength.cs
- SRef.cs
- DesignerSerializerAttribute.cs
- _DisconnectOverlappedAsyncResult.cs
- OleDbParameter.cs
- SettingsAttributeDictionary.cs
- TransformGroup.cs
- DataViewManagerListItemTypeDescriptor.cs
- SqlTypesSchemaImporter.cs
- HttpListenerException.cs
- WpfPayload.cs
- dbdatarecord.cs
- RuntimeVariableList.cs
- RowTypePropertyElement.cs
- InternalEnumValidator.cs
- ContainsSearchOperator.cs
- DataService.cs
- ExceptionValidationRule.cs
- UpdateManifestForBrowserApplication.cs
- ColorKeyFrameCollection.cs
- UnsupportedPolicyOptionsException.cs
- WebPartConnectionCollection.cs
- WebPartDisplayModeCollection.cs
- OuterGlowBitmapEffect.cs
- DateTimeStorage.cs
- PlainXmlDeserializer.cs
- SerializationHelper.cs
- FileSystemInfo.cs
- Itemizer.cs
- EmissiveMaterial.cs
- TableLayoutSettings.cs
- FormClosingEvent.cs
- AuthenticationManager.cs
- ReservationCollection.cs
- DataGridViewSelectedRowCollection.cs
- Margins.cs
- InkPresenter.cs
- RenderData.cs
- QilIterator.cs
- CatalogZone.cs
- _AutoWebProxyScriptEngine.cs
- XdrBuilder.cs
- WpfMemberInvoker.cs
- GifBitmapDecoder.cs
- MenuCommands.cs