Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / CookieParameter.cs / 1305376 / CookieParameter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Data; ////// Represents a Parameter that gets its value from the application's request parameters. /// [ DefaultProperty("CookieName"), ] 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 internal 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; ////// Represents a Parameter that gets its value from the application's request parameters. /// [ DefaultProperty("CookieName"), ] 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 internal 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
- OpCodes.cs
- MultiPropertyDescriptorGridEntry.cs
- PrivilegedConfigurationManager.cs
- Matrix3DConverter.cs
- DecoderFallbackWithFailureFlag.cs
- CompositeScriptReference.cs
- DBDataPermissionAttribute.cs
- InlinedAggregationOperator.cs
- HostingEnvironmentSection.cs
- Point3DCollectionConverter.cs
- PersonalizableAttribute.cs
- UriParserTemplates.cs
- XmlNamedNodeMap.cs
- Collection.cs
- FaultBookmark.cs
- ContainerTracking.cs
- GeneralTransform3D.cs
- SharedDp.cs
- GlyphElement.cs
- StreamInfo.cs
- WorkBatch.cs
- ApplicationException.cs
- Font.cs
- DataGridViewImageCell.cs
- sitestring.cs
- Hex.cs
- HttpContext.cs
- BamlReader.cs
- WindowsTokenRoleProvider.cs
- SectionInput.cs
- PriorityItem.cs
- Base64WriteStateInfo.cs
- ShaderEffect.cs
- FileReservationCollection.cs
- XmlSchemaChoice.cs
- DataBoundControlDesigner.cs
- Stopwatch.cs
- LayoutSettings.cs
- XmlReturnReader.cs
- NamespaceDisplayAutomationPeer.cs
- ReflectionHelper.cs
- PanelDesigner.cs
- BlobPersonalizationState.cs
- Int32Storage.cs
- SrgsSemanticInterpretationTag.cs
- ByteStreamGeometryContext.cs
- MetadataArtifactLoaderFile.cs
- ParallelEnumerableWrapper.cs
- PartDesigner.cs
- HyperlinkAutomationPeer.cs
- WindowsFormsSynchronizationContext.cs
- TransactionException.cs
- SamlAudienceRestrictionCondition.cs
- EmptyEnumerator.cs
- printdlgexmarshaler.cs
- X509AsymmetricSecurityKey.cs
- StaticExtensionConverter.cs
- RuntimeIdentifierPropertyAttribute.cs
- AttachedAnnotation.cs
- SwitchLevelAttribute.cs
- StylusDownEventArgs.cs
- ByeOperationCD1AsyncResult.cs
- ListViewUpdatedEventArgs.cs
- WmlListAdapter.cs
- BasicHttpSecurityElement.cs
- InternalConfigEventArgs.cs
- SafeThreadHandle.cs
- LookupNode.cs
- Stroke.cs
- SystemIPInterfaceStatistics.cs
- PermissionRequestEvidence.cs
- SiteMapPathDesigner.cs
- LabelInfo.cs
- PopupRoot.cs
- contentDescriptor.cs
- ColorTranslator.cs
- FileAccessException.cs
- DivideByZeroException.cs
- DataGridLength.cs
- NullableConverter.cs
- DES.cs
- ToolStripItemImageRenderEventArgs.cs
- DateTimeStorage.cs
- DebugView.cs
- InstanceDescriptor.cs
- DateTimeUtil.cs
- codemethodreferenceexpression.cs
- TraceUtility.cs
- BooleanExpr.cs
- SecurityState.cs
- ActivityBindForm.Designer.cs
- _SslState.cs
- WindowsListViewItem.cs
- ApplicationManager.cs
- ContextQuery.cs
- StandardCommands.cs
- ListDictionary.cs
- DynamicValidatorEventArgs.cs
- HebrewNumber.cs
- FamilyTypefaceCollection.cs