Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DbSetClause.cs
- DirectoryNotFoundException.cs
- ImageSourceValueSerializer.cs
- InstanceOwnerException.cs
- TextBreakpoint.cs
- TemplateNameScope.cs
- CustomValidator.cs
- OutputScopeManager.cs
- EdmSchemaError.cs
- DynamicDataManager.cs
- ObjectContextServiceProvider.cs
- PagePropertiesChangingEventArgs.cs
- DesignTimeParseData.cs
- BitmapEffectOutputConnector.cs
- WSFederationHttpBindingCollectionElement.cs
- X509CertificateCollection.cs
- SystemInformation.cs
- LoopExpression.cs
- MiniParameterInfo.cs
- MasterPageParser.cs
- Calendar.cs
- CodeThrowExceptionStatement.cs
- RSAOAEPKeyExchangeDeformatter.cs
- LineBreakRecord.cs
- QilStrConcat.cs
- AppDomainManager.cs
- ExpandButtonVisibilityConverter.cs
- ProcessThread.cs
- StorageEntityTypeMapping.cs
- DataGridViewRow.cs
- ToolStripActionList.cs
- ImageSource.cs
- KeyTimeConverter.cs
- RadialGradientBrush.cs
- AuthenticationService.cs
- RemotingException.cs
- ScriptControlDescriptor.cs
- WindowsFormsHostAutomationPeer.cs
- DbXmlEnabledProviderManifest.cs
- EdmValidator.cs
- BinaryObjectInfo.cs
- OpCodes.cs
- ListenerElementsCollection.cs
- TdsParser.cs
- AssertFilter.cs
- StylusEditingBehavior.cs
- BufferBuilder.cs
- LogicalExpr.cs
- DBConcurrencyException.cs
- GradientBrush.cs
- DocumentOutline.cs
- SafeTimerHandle.cs
- PixelShader.cs
- TabPanel.cs
- OdbcEnvironmentHandle.cs
- UnsafeNativeMethods.cs
- EditableRegion.cs
- ConnectionManagementElementCollection.cs
- StylusPlugin.cs
- FilteredDataSetHelper.cs
- StorageInfo.cs
- NestedContainer.cs
- XmlMtomWriter.cs
- MouseCaptureWithinProperty.cs
- ExecutedRoutedEventArgs.cs
- ValidatorCompatibilityHelper.cs
- SizeAnimation.cs
- DocumentApplicationJournalEntry.cs
- SqlHelper.cs
- Point3DAnimation.cs
- MemberRelationshipService.cs
- GenericWebPart.cs
- StylusDevice.cs
- MdiWindowListItemConverter.cs
- FileLoadException.cs
- XamlTypeMapper.cs
- Utils.cs
- BitmapMetadataBlob.cs
- ResXResourceSet.cs
- DesignerSerializationVisibilityAttribute.cs
- X509CertificateStore.cs
- BindingManagerDataErrorEventArgs.cs
- WSHttpBindingBaseElement.cs
- SourceFileBuildProvider.cs
- ManagedFilter.cs
- FileLoadException.cs
- TextModifierScope.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- DefaultTraceListener.cs
- Model3D.cs
- UInt32.cs
- RelatedCurrencyManager.cs
- StringKeyFrameCollection.cs
- EncodingTable.cs
- AppDomain.cs
- FtpCachePolicyElement.cs
- WhitespaceSignificantCollectionAttribute.cs
- CurrentChangingEventManager.cs
- AssertFilter.cs
- UniqueIdentifierService.cs