Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / CookieParameter.cs / 2 / CookieParameter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Data; using System.Security.Permissions; ////// Represents a Parameter that gets its value from the application's request parameters. /// [ DefaultProperty("CookieName"), ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class CookieParameter : Parameter { ////// Creates an instance of the CookieParameter class. /// public CookieParameter() { } ////// Creates an instance of the CookieParameter class with the specified parameter name and request field. /// public CookieParameter(string name, string cookieName) : base(name) { CookieName = cookieName; } ////// Creates an instance of the CookieParameter class with the specified parameter name, database type, and /// request field. /// public CookieParameter(string name, DbType dbType, string cookieName) : base(name, dbType) { CookieName = cookieName; } ////// Creates an instance of the CookieParameter class with the specified parameter name, type, and request field. /// public CookieParameter(string name, TypeCode type, string cookieName) : base(name, type) { CookieName = cookieName; } ////// Used to clone a parameter. /// protected CookieParameter(CookieParameter original) : base(original) { CookieName = original.CookieName; } ////// The name of the request parameter to get the value from. /// [ DefaultValue(""), WebCategory("Parameter"), WebSysDescription(SR.CookieParameter_CookieName), ] public string CookieName { get { object o = ViewState["CookieName"]; if (o == null) return String.Empty; return (string)o; } set { if (CookieName != value) { ViewState["CookieName"] = value; OnParameterChanged(); } } } ////// Creates a new CookieParameter that is a copy of this CookieParameter. /// protected override Parameter Clone() { return new CookieParameter(this); } ////// Returns the updated value of the parameter. /// protected override object Evaluate(HttpContext context, Control control) { if (context == null || context.Request == null) { return null; } HttpCookie cookie = context.Request.Cookies[CookieName]; if (cookie == null) { return null; } return cookie.Value; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Data; using System.Security.Permissions; ////// Represents a Parameter that gets its value from the application's request parameters. /// [ DefaultProperty("CookieName"), ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class CookieParameter : Parameter { ////// Creates an instance of the CookieParameter class. /// public CookieParameter() { } ////// Creates an instance of the CookieParameter class with the specified parameter name and request field. /// public CookieParameter(string name, string cookieName) : base(name) { CookieName = cookieName; } ////// Creates an instance of the CookieParameter class with the specified parameter name, database type, and /// request field. /// public CookieParameter(string name, DbType dbType, string cookieName) : base(name, dbType) { CookieName = cookieName; } ////// Creates an instance of the CookieParameter class with the specified parameter name, type, and request field. /// public CookieParameter(string name, TypeCode type, string cookieName) : base(name, type) { CookieName = cookieName; } ////// Used to clone a parameter. /// protected CookieParameter(CookieParameter original) : base(original) { CookieName = original.CookieName; } ////// The name of the request parameter to get the value from. /// [ DefaultValue(""), WebCategory("Parameter"), WebSysDescription(SR.CookieParameter_CookieName), ] public string CookieName { get { object o = ViewState["CookieName"]; if (o == null) return String.Empty; return (string)o; } set { if (CookieName != value) { ViewState["CookieName"] = value; OnParameterChanged(); } } } ////// Creates a new CookieParameter that is a copy of this CookieParameter. /// protected override Parameter Clone() { return new CookieParameter(this); } ////// Returns the updated value of the parameter. /// protected override object Evaluate(HttpContext context, Control control) { if (context == null || context.Request == null) { return null; } HttpCookie cookie = context.Request.Cookies[CookieName]; if (cookie == null) { return null; } return cookie.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
- ClientConfigurationHost.cs
- BitSet.cs
- SmtpLoginAuthenticationModule.cs
- _Rfc2616CacheValidators.cs
- RuleSettings.cs
- Frame.cs
- HtmlTernaryTree.cs
- ScopeElement.cs
- CodeTypeConstructor.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- CodeNamespaceImportCollection.cs
- SqlUdtInfo.cs
- WebPartMovingEventArgs.cs
- MetadataException.cs
- Composition.cs
- ScrollProperties.cs
- XmlBinaryReader.cs
- SoapExtensionTypeElementCollection.cs
- ComPlusInstanceContextInitializer.cs
- X509InitiatorCertificateClientElement.cs
- WindowProviderWrapper.cs
- Visitors.cs
- TrackingProfileDeserializationException.cs
- Win32.cs
- _SslState.cs
- Scripts.cs
- SqlStream.cs
- XNodeNavigator.cs
- BmpBitmapDecoder.cs
- ContextMenuService.cs
- WindowsToolbarAsMenu.cs
- SpeechDetectedEventArgs.cs
- WebPartHelpVerb.cs
- DeleteIndexBinder.cs
- UriTemplate.cs
- EndPoint.cs
- SecurityPermission.cs
- SQLGuidStorage.cs
- HostingPreferredMapPath.cs
- NavigationWindow.cs
- ConnectionManagementElementCollection.cs
- _KerberosClient.cs
- MethodToken.cs
- Stopwatch.cs
- DbSource.cs
- ReadOnlyDataSourceView.cs
- Emitter.cs
- XmlSchemaIdentityConstraint.cs
- FieldDescriptor.cs
- CodeMethodMap.cs
- EventSinkHelperWriter.cs
- SmiContext.cs
- ConfigurationStrings.cs
- StateDesigner.cs
- IgnoreFileBuildProvider.cs
- SettingsPropertyValue.cs
- GridLengthConverter.cs
- NamespaceCollection.cs
- PersistChildrenAttribute.cs
- unsafeIndexingFilterStream.cs
- _UriTypeConverter.cs
- LayoutTable.cs
- DataGridViewCellEventArgs.cs
- XmlUtil.cs
- Calendar.cs
- SequenceRange.cs
- OracleFactory.cs
- WhereQueryOperator.cs
- ViewCellSlot.cs
- MaterializeFromAtom.cs
- ServiceContractViewControl.Designer.cs
- XmlProcessingInstruction.cs
- DataGridViewTopRowAccessibleObject.cs
- GridViewUpdateEventArgs.cs
- VisualTreeHelper.cs
- ProjectionCamera.cs
- SmtpAuthenticationManager.cs
- SafePEFileHandle.cs
- FlowPanelDesigner.cs
- DBSqlParser.cs
- InstancePersistenceException.cs
- DragEvent.cs
- MethodCallTranslator.cs
- PageCopyCount.cs
- TableLayoutSettings.cs
- XmlSchemaImport.cs
- FormViewPageEventArgs.cs
- DocumentCollection.cs
- Boolean.cs
- Argument.cs
- DirectionalLight.cs
- AddInDeploymentState.cs
- MimeMultiPart.cs
- HWStack.cs
- TdsRecordBufferSetter.cs
- SmiEventSink_Default.cs
- DataSourceXmlAttributeAttribute.cs
- Operators.cs
- CommandConverter.cs
- _LocalDataStoreMgr.cs