Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / HttpCookiesSection.cs / 1305376 / HttpCookiesSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.Security.Permissions; public sealed class HttpCookiesSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propHttpOnlyCookies = new ConfigurationProperty("httpOnlyCookies", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propRequireSSL = new ConfigurationProperty("requireSSL", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propDomain = new ConfigurationProperty("domain", typeof(string), String.Empty, ConfigurationPropertyOptions.None); /**/ static HttpCookiesSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propHttpOnlyCookies); _properties.Add(_propRequireSSL); _properties.Add(_propDomain); } public HttpCookiesSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("httpOnlyCookies", DefaultValue = false)] public bool HttpOnlyCookies { get { return (bool)base[_propHttpOnlyCookies]; } set { base[_propHttpOnlyCookies] = value; } } [ConfigurationProperty("requireSSL", DefaultValue = false)] public bool RequireSSL { get { return (bool)base[_propRequireSSL]; } set { base[_propRequireSSL] = value; } } [ConfigurationProperty("domain", DefaultValue = "")] public string Domain { get { return (string)base[_propDomain]; } set { base[_propDomain] = value; } } } } // 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
- Point3D.cs
- ErrorLog.cs
- DataGridViewToolTip.cs
- ObjectDataSource.cs
- BinaryParser.cs
- TypedTableBase.cs
- BuildManagerHost.cs
- ButtonBase.cs
- Delay.cs
- BinaryCommonClasses.cs
- RSAPKCS1KeyExchangeFormatter.cs
- StreamInfo.cs
- DropShadowEffect.cs
- LayoutEditorPart.cs
- GeneratedCodeAttribute.cs
- AssociationTypeEmitter.cs
- SslStream.cs
- MenuItemCollectionEditor.cs
- DBSqlParserTable.cs
- EndCreateSecurityTokenRequest.cs
- TemplateBindingExtension.cs
- JumpItem.cs
- IndicShape.cs
- Membership.cs
- Activator.cs
- _NestedSingleAsyncResult.cs
- DeploymentSection.cs
- DatePickerAutomationPeer.cs
- InvokeHandlers.cs
- HttpListenerContext.cs
- ListViewItemEventArgs.cs
- ExtendedPropertyDescriptor.cs
- PathParser.cs
- FileIOPermission.cs
- DeclarationUpdate.cs
- DataGridPagingPage.cs
- NamespaceEmitter.cs
- LinqMaximalSubtreeNominator.cs
- EpmContentDeSerializerBase.cs
- ADMembershipProvider.cs
- BinarySerializer.cs
- Header.cs
- XmlSchemaAppInfo.cs
- FormViewUpdateEventArgs.cs
- NamedPipeConnectionPoolSettingsElement.cs
- DesignerForm.cs
- ReverseInheritProperty.cs
- _CommandStream.cs
- DataServiceBuildProvider.cs
- SizeConverter.cs
- ByteKeyFrameCollection.cs
- FragmentQuery.cs
- GridViewAutomationPeer.cs
- TextEndOfParagraph.cs
- Nullable.cs
- Error.cs
- DeferredElementTreeState.cs
- BitmapEffectDrawingContextState.cs
- DataGridViewIntLinkedList.cs
- ISessionStateStore.cs
- ColorMap.cs
- UnsafeNetInfoNativeMethods.cs
- InstanceCompleteException.cs
- DataControlButton.cs
- ImageField.cs
- RawStylusInputCustomDataList.cs
- CacheChildrenQuery.cs
- ReturnValue.cs
- ValidatedControlConverter.cs
- ChtmlPageAdapter.cs
- RecognitionResult.cs
- ObjectStorage.cs
- ChainOfResponsibility.cs
- DbProviderFactories.cs
- BackgroundFormatInfo.cs
- PackUriHelper.cs
- Size.cs
- XPathNodeHelper.cs
- OutputCacheProfileCollection.cs
- DataKeyCollection.cs
- RuntimeHelpers.cs
- Light.cs
- ForeignKeyConstraint.cs
- BrowserCapabilitiesFactoryBase.cs
- Buffer.cs
- UpdatePanel.cs
- ParenthesizePropertyNameAttribute.cs
- ResourceContainer.cs
- DataRow.cs
- SystemException.cs
- BaseValidator.cs
- DesignerActionVerbItem.cs
- TraceLevelHelper.cs
- ResponseStream.cs
- wgx_commands.cs
- IfElseDesigner.xaml.cs
- Operator.cs
- filewebrequest.cs
- CompositeTypefaceMetrics.cs
- SerializationFieldInfo.cs