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
- DynamicValueConverter.cs
- HtmlWindow.cs
- DrawingContextDrawingContextWalker.cs
- ResourceReferenceExpression.cs
- ThemeConfigurationDialog.cs
- XsdBuilder.cs
- FlowDocumentFormatter.cs
- Activity.cs
- ControlAdapter.cs
- TextDecorationCollection.cs
- ServiceBuildProvider.cs
- ResourceContainer.cs
- IPEndPoint.cs
- DefaultHttpHandler.cs
- Speller.cs
- DoubleCollection.cs
- PermissionAttributes.cs
- BitVec.cs
- WebRequestModulesSection.cs
- RecognitionResult.cs
- CodeDelegateCreateExpression.cs
- BaseResourcesBuildProvider.cs
- CodeSnippetCompileUnit.cs
- RulePatternOps.cs
- DecoderBestFitFallback.cs
- Query.cs
- XmlSchemaFacet.cs
- XmlNode.cs
- AdapterUtil.cs
- TabControl.cs
- JsonWriterDelegator.cs
- SerializationException.cs
- SemanticValue.cs
- BitmapEffectInput.cs
- IgnoreDeviceFilterElement.cs
- TextSearch.cs
- unsafenativemethodsother.cs
- StringPropertyBuilder.cs
- DataSourceControlBuilder.cs
- StorageScalarPropertyMapping.cs
- OdbcConnectionOpen.cs
- LogLogRecordHeader.cs
- DoubleLink.cs
- SubpageParagraph.cs
- ReliabilityContractAttribute.cs
- DataGridViewElement.cs
- TwoPhaseCommit.cs
- SqlInternalConnectionSmi.cs
- CardSpaceShim.cs
- QueryExpression.cs
- SafeNativeMethods.cs
- Internal.cs
- Form.cs
- DataGridViewCheckBoxColumn.cs
- NavigateEvent.cs
- XmlNamespaceMappingCollection.cs
- ProxyOperationRuntime.cs
- FrameworkContentElement.cs
- BuildDependencySet.cs
- Adorner.cs
- SecUtil.cs
- RemotingConfigParser.cs
- XmlDataLoader.cs
- DataGridViewBand.cs
- JobDuplex.cs
- ScrollProperties.cs
- Fonts.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- TableAutomationPeer.cs
- UnauthorizedAccessException.cs
- Hex.cs
- BaseComponentEditor.cs
- DesignerSerializerAttribute.cs
- ChannelOptions.cs
- GridEntryCollection.cs
- LateBoundBitmapDecoder.cs
- TreeNodeClickEventArgs.cs
- DataBoundControlDesigner.cs
- SoapSchemaImporter.cs
- SpecialNameAttribute.cs
- WebPartConnectionsConnectVerb.cs
- TableNameAttribute.cs
- RoleManagerSection.cs
- DesignTimeParseData.cs
- ObjectKeyFrameCollection.cs
- WindowsFormsHostAutomationPeer.cs
- CodeIdentifiers.cs
- RemoteWebConfigurationHostServer.cs
- WindowsListViewGroup.cs
- SQLConvert.cs
- FontSourceCollection.cs
- FlowLayoutSettings.cs
- X509Logo.cs
- ValidationError.cs
- Ticks.cs
- SmtpLoginAuthenticationModule.cs
- StreamUpdate.cs
- DataContract.cs
- InheritanceUI.cs
- Ref.cs