Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / HttpCookiesSection.cs / 1 / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // 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; } } } } // 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
- SQLInt64.cs
- Matrix.cs
- MappingException.cs
- XmlSchemaNotation.cs
- WhiteSpaceTrimStringConverter.cs
- MaskDescriptor.cs
- SoapEnvelopeProcessingElement.cs
- StateMachineSubscription.cs
- AnimationClockResource.cs
- DateTimeFormat.cs
- SafeArrayTypeMismatchException.cs
- RadioButton.cs
- WebPartCloseVerb.cs
- DocumentViewerHelper.cs
- GridToolTip.cs
- ComponentCollection.cs
- EntityCommandCompilationException.cs
- UTF7Encoding.cs
- DictionaryEntry.cs
- wgx_commands.cs
- FormClosedEvent.cs
- ChannelTraceRecord.cs
- SmtpReplyReader.cs
- XmlSchemaSimpleType.cs
- WebConfigurationManager.cs
- SQLBoolean.cs
- TagPrefixInfo.cs
- LineUtil.cs
- ColorConvertedBitmapExtension.cs
- MethodSignatureGenerator.cs
- ContainsRowNumberChecker.cs
- SiteMapSection.cs
- ZeroOpNode.cs
- UITypeEditor.cs
- ExternalException.cs
- SafePointer.cs
- XmlSecureResolver.cs
- EntityDataSourceDataSelection.cs
- TaskFileService.cs
- MembershipPasswordException.cs
- HttpPostedFile.cs
- EntityDataSourceDesignerHelper.cs
- Point3DValueSerializer.cs
- OuterProxyWrapper.cs
- Decoder.cs
- CodeObjectCreateExpression.cs
- PaperSize.cs
- ManagementObject.cs
- StickyNote.cs
- ActivityTrace.cs
- ConfigurationStrings.cs
- PageEventArgs.cs
- _Semaphore.cs
- TabPage.cs
- SqlTrackingQuery.cs
- RtType.cs
- OdbcHandle.cs
- SqlProcedureAttribute.cs
- ChangePassword.cs
- SchemaMapping.cs
- ActivityInterfaces.cs
- SelectionItemProviderWrapper.cs
- DockPatternIdentifiers.cs
- DbSetClause.cs
- NameNode.cs
- TraceHandlerErrorFormatter.cs
- transactioncontext.cs
- DecoderFallbackWithFailureFlag.cs
- ObjectQuery.cs
- DataGridViewDesigner.cs
- HttpModuleAction.cs
- ThousandthOfEmRealPoints.cs
- Stack.cs
- XmlEntityReference.cs
- InkPresenterAutomationPeer.cs
- BaseDataList.cs
- TiffBitmapEncoder.cs
- RelationshipType.cs
- TypeSource.cs
- TypedDataSourceCodeGenerator.cs
- UnauthorizedAccessException.cs
- StateMachine.cs
- XmlAtomicValue.cs
- VirtualPathUtility.cs
- SeparatorAutomationPeer.cs
- ACL.cs
- XmlTextReaderImplHelpers.cs
- StrongTypingException.cs
- CheckBoxList.cs
- TextModifier.cs
- XmlILConstructAnalyzer.cs
- AffineTransform3D.cs
- Bidi.cs
- SqlConnectionStringBuilder.cs
- WizardPanelChangingEventArgs.cs
- FilteredReadOnlyMetadataCollection.cs
- ToggleButtonAutomationPeer.cs
- StyleCollectionEditor.cs
- BinaryObjectWriter.cs
- UInt64Storage.cs