Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / ProfileParameter.cs / 1305376 / ProfileParameter.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 user's profile data. /// [ DefaultProperty("PropertyName"), ] public class ProfileParameter : Parameter { ////// Creates an instance of the ProfileParameter class. /// public ProfileParameter() { } ////// Creates an instance of the ProfileParameter class with the specified parameter name and profile property. /// public ProfileParameter(string name, string propertyName) : base(name) { PropertyName = propertyName; } ////// Creates an instance of the ProfileParameter class with the specified parameter name, type, and profile property. /// public ProfileParameter(string name, TypeCode type, string propertyName) : base(name, type) { PropertyName = propertyName; } ////// Creates an instance of the ProfileParameter class with the specified parameter name, database type, and /// profile property. /// public ProfileParameter(string name, DbType dbType, string propertyName) : base(name, dbType) { PropertyName = propertyName; } ////// Used to clone a parameter. /// protected ProfileParameter(ProfileParameter original) : base(original) { PropertyName = original.PropertyName; } ////// The name of the Profile property to get the value from. /// [ DefaultValue(""), WebCategory("Parameter"), WebSysDescription(SR.ProfileParameter_PropertyName), ] public string PropertyName { get { object o = ViewState["PropertyName"]; if (o == null) return String.Empty; return (string)o; } set { if (PropertyName != value) { ViewState["PropertyName"] = value; OnParameterChanged(); } } } ////// Creates a new ProfileParameter that is a copy of this ProfileParameter. /// protected override Parameter Clone() { return new ProfileParameter(this); } ////// Returns the updated value of the parameter. /// protected internal override object Evaluate(HttpContext context, Control control) { if (context == null || context.Profile == null) { return null; } return DataBinder.Eval(context.Profile, PropertyName); } } } // 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 user's profile data. /// [ DefaultProperty("PropertyName"), ] public class ProfileParameter : Parameter { ////// Creates an instance of the ProfileParameter class. /// public ProfileParameter() { } ////// Creates an instance of the ProfileParameter class with the specified parameter name and profile property. /// public ProfileParameter(string name, string propertyName) : base(name) { PropertyName = propertyName; } ////// Creates an instance of the ProfileParameter class with the specified parameter name, type, and profile property. /// public ProfileParameter(string name, TypeCode type, string propertyName) : base(name, type) { PropertyName = propertyName; } ////// Creates an instance of the ProfileParameter class with the specified parameter name, database type, and /// profile property. /// public ProfileParameter(string name, DbType dbType, string propertyName) : base(name, dbType) { PropertyName = propertyName; } ////// Used to clone a parameter. /// protected ProfileParameter(ProfileParameter original) : base(original) { PropertyName = original.PropertyName; } ////// The name of the Profile property to get the value from. /// [ DefaultValue(""), WebCategory("Parameter"), WebSysDescription(SR.ProfileParameter_PropertyName), ] public string PropertyName { get { object o = ViewState["PropertyName"]; if (o == null) return String.Empty; return (string)o; } set { if (PropertyName != value) { ViewState["PropertyName"] = value; OnParameterChanged(); } } } ////// Creates a new ProfileParameter that is a copy of this ProfileParameter. /// protected override Parameter Clone() { return new ProfileParameter(this); } ////// Returns the updated value of the parameter. /// protected internal override object Evaluate(HttpContext context, Control control) { if (context == null || context.Profile == null) { return null; } return DataBinder.Eval(context.Profile, PropertyName); } } } // 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
- ImageClickEventArgs.cs
- OdbcException.cs
- ServiceOperationListItem.cs
- TypeInfo.cs
- ThreadNeutralSemaphore.cs
- QueryRewriter.cs
- DSASignatureDeformatter.cs
- EntityContainerEmitter.cs
- TextEditorCopyPaste.cs
- PanelStyle.cs
- CodeChecksumPragma.cs
- SessionParameter.cs
- IListConverters.cs
- MsmqInputSessionChannel.cs
- HostingEnvironmentException.cs
- configsystem.cs
- GlobalProxySelection.cs
- VisualCollection.cs
- PaginationProgressEventArgs.cs
- SafeNativeMethods.cs
- SamlAuthorizationDecisionStatement.cs
- ExtensionWindow.cs
- ContentDisposition.cs
- XXXInfos.cs
- ListChangedEventArgs.cs
- RectAnimationBase.cs
- DCSafeHandle.cs
- DataColumnChangeEvent.cs
- FrameworkTemplate.cs
- ObjectSecurityT.cs
- AdRotator.cs
- Popup.cs
- COM2ExtendedTypeConverter.cs
- ChineseLunisolarCalendar.cs
- unsafenativemethodstextservices.cs
- XPathAncestorIterator.cs
- ToolbarAUtomationPeer.cs
- Model3DCollection.cs
- DtrList.cs
- SafeBitVector32.cs
- DateTimeOffsetStorage.cs
- XpsImageSerializationService.cs
- MeasureItemEvent.cs
- TCEAdapterGenerator.cs
- MemberDescriptor.cs
- RemoteWebConfigurationHostStream.cs
- XmlCustomFormatter.cs
- RelationshipEntry.cs
- ProjectedSlot.cs
- LinqDataSourceSelectEventArgs.cs
- SqlStatistics.cs
- TextServicesPropertyRanges.cs
- Symbol.cs
- PagerSettings.cs
- SecurityResources.cs
- DbDataAdapter.cs
- PersistenceTypeAttribute.cs
- _UriSyntax.cs
- ContextMenuService.cs
- PropertyMap.cs
- DescriptionAttribute.cs
- WindowsBrush.cs
- BookmarkOptionsHelper.cs
- DataGridViewCellStyleChangedEventArgs.cs
- SecurityUniqueId.cs
- ServiceProviders.cs
- DesignSurfaceEvent.cs
- Rule.cs
- UrlMapping.cs
- AutomationEvent.cs
- TransactionContextManager.cs
- BuildProviderCollection.cs
- ObjectStateEntry.cs
- GiveFeedbackEventArgs.cs
- StringResourceManager.cs
- TextRenderer.cs
- MailDefinitionBodyFileNameEditor.cs
- Journal.cs
- PointHitTestResult.cs
- MenuItemStyleCollection.cs
- ObjectDataSourceSelectingEventArgs.cs
- DataRowComparer.cs
- DbMetaDataFactory.cs
- WebPartAuthorizationEventArgs.cs
- EpmCustomContentWriterNodeData.cs
- ToolboxItem.cs
- Point4DValueSerializer.cs
- IgnoreDeviceFilterElementCollection.cs
- ManipulationStartedEventArgs.cs
- _TLSstream.cs
- HtmlInputReset.cs
- SmiContext.cs
- StorageEntityTypeMapping.cs
- NumericExpr.cs
- NullableBoolConverter.cs
- WinHttpWebProxyFinder.cs
- IntranetCredentialPolicy.cs
- ScrollContentPresenter.cs
- PinnedBufferMemoryStream.cs
- ICollection.cs