Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / HttpCookiesSection.cs / 2 / 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; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CanonicalXml.cs
- HTTPNotFoundHandler.cs
- BufferBuilder.cs
- OverrideMode.cs
- EntityKeyElement.cs
- ClickablePoint.cs
- DataError.cs
- ButtonRenderer.cs
- VerificationException.cs
- PrintingPermission.cs
- ArrayConverter.cs
- Paragraph.cs
- SafeBitVector32.cs
- BindToObject.cs
- MessageEncodingBindingElementImporter.cs
- EnumValidator.cs
- SignedInfo.cs
- OrderPreservingSpoolingTask.cs
- SingleSelectRootGridEntry.cs
- PkcsMisc.cs
- DelegateTypeInfo.cs
- CompilationLock.cs
- InternalCache.cs
- MimeMapping.cs
- documentation.cs
- PropertyInfoSet.cs
- DriveNotFoundException.cs
- EllipseGeometry.cs
- KeyConstraint.cs
- OdbcConnectionString.cs
- TimeoutValidationAttribute.cs
- SQLInt32Storage.cs
- AbstractExpressions.cs
- QuaternionAnimation.cs
- ContextProperty.cs
- ScaleTransform.cs
- TagMapCollection.cs
- XmlDocumentFragment.cs
- GraphicsPath.cs
- NativeDirectoryServicesQueryAPIs.cs
- Int16AnimationBase.cs
- TrackingDataItemValue.cs
- ClientFormsIdentity.cs
- WebServiceFault.cs
- ImageBrush.cs
- SmtpCommands.cs
- NumericUpDownAccelerationCollection.cs
- UnmanagedMemoryStreamWrapper.cs
- ProcessHost.cs
- OuterGlowBitmapEffect.cs
- SqlErrorCollection.cs
- XmlProcessingInstruction.cs
- DoubleAnimationUsingKeyFrames.cs
- RegisteredExpandoAttribute.cs
- ClientBuildManager.cs
- Page.cs
- SqlIdentifier.cs
- MembershipSection.cs
- StringDictionary.cs
- TypeSystem.cs
- StringBlob.cs
- Themes.cs
- HttpRawResponse.cs
- LineGeometry.cs
- DataFieldConverter.cs
- SHA384.cs
- HostingEnvironment.cs
- ManualWorkflowSchedulerService.cs
- ItemMap.cs
- BooleanKeyFrameCollection.cs
- SafeFileMappingHandle.cs
- EntityUtil.cs
- FrameworkContentElement.cs
- ColorKeyFrameCollection.cs
- InternalConfigHost.cs
- ModelUIElement3D.cs
- PreservationFileReader.cs
- KeyEventArgs.cs
- JoinCqlBlock.cs
- AssignDesigner.xaml.cs
- followingsibling.cs
- OrderedDictionaryStateHelper.cs
- CurrentTimeZone.cs
- ToolStripScrollButton.cs
- PersonalizationStateQuery.cs
- AQNBuilder.cs
- MediaContext.cs
- AspNetSynchronizationContext.cs
- Popup.cs
- GridViewDeleteEventArgs.cs
- CodePropertyReferenceExpression.cs
- ErrorItem.cs
- DataSourceBooleanViewSchemaConverter.cs
- ArrangedElementCollection.cs
- SyndicationFeedFormatter.cs
- DSACryptoServiceProvider.cs
- XmlDocumentType.cs
- DataGridBoolColumn.cs
- Attributes.cs
- GeneralTransform3DGroup.cs