Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / ProfileParameter.cs / 2 / ProfileParameter.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 user's profile data. /// [ DefaultProperty("PropertyName"), ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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 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. //------------------------------------------------------------------------------ //// 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 user's profile data. /// [ DefaultProperty("PropertyName"), ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BorderGapMaskConverter.cs
- ActivityMarkupSerializationProvider.cs
- Executor.cs
- PackageDigitalSignature.cs
- CommentEmitter.cs
- SegmentInfo.cs
- ClaimTypeRequirement.cs
- VirtualDirectoryMappingCollection.cs
- RowBinding.cs
- Module.cs
- BitmapEffect.cs
- TypeConverterHelper.cs
- ObjectCloneHelper.cs
- RequestQueue.cs
- SafeNativeMethodsOther.cs
- KeyProperty.cs
- EdmFunctions.cs
- MouseGesture.cs
- ColorConvertedBitmapExtension.cs
- MobileResource.cs
- ConfigurationManagerInternalFactory.cs
- TextRunProperties.cs
- Int64.cs
- AuthenticatedStream.cs
- SqlUdtInfo.cs
- localization.cs
- BitmapEffectDrawing.cs
- SrgsElementFactoryCompiler.cs
- UIElement.cs
- XmlReader.cs
- HttpCapabilitiesSectionHandler.cs
- PersianCalendar.cs
- NextPreviousPagerField.cs
- XpsPackagingPolicy.cs
- TextEndOfSegment.cs
- StringToken.cs
- SecurityException.cs
- DynamicResourceExtension.cs
- ByteFacetDescriptionElement.cs
- SimpleRecyclingCache.cs
- CompositeFontInfo.cs
- PropertyTabAttribute.cs
- DragCompletedEventArgs.cs
- EntityUtil.cs
- DetailsView.cs
- TokenBasedSet.cs
- DesignerActionPropertyItem.cs
- LogEntrySerializationException.cs
- Transform3DGroup.cs
- WebPartCatalogCloseVerb.cs
- Panel.cs
- MetadataArtifactLoaderCompositeResource.cs
- TextRange.cs
- BookmarkManager.cs
- DayRenderEvent.cs
- BitVec.cs
- NetworkInformationPermission.cs
- BitmapPalettes.cs
- TrackingRecord.cs
- RequestCachePolicy.cs
- IconEditor.cs
- DebugView.cs
- EdgeModeValidation.cs
- NextPreviousPagerField.cs
- ProfileSection.cs
- MemberAccessException.cs
- SqlUdtInfo.cs
- Group.cs
- SqlRowUpdatingEvent.cs
- Pair.cs
- ToolboxItemFilterAttribute.cs
- FileVersionInfo.cs
- CallSiteHelpers.cs
- DataPagerFieldItem.cs
- EditorPartChrome.cs
- OrderedDictionary.cs
- EventLogInternal.cs
- TableLayoutPanelCellPosition.cs
- ToolStripPanelRenderEventArgs.cs
- GlobalProxySelection.cs
- Compiler.cs
- XmlAnyAttributeAttribute.cs
- SqlClientWrapperSmiStreamChars.cs
- XDeferredAxisSource.cs
- OracleCommandSet.cs
- ComAdminWrapper.cs
- CachedFontFamily.cs
- TextLine.cs
- ZoneButton.cs
- UnknownBitmapDecoder.cs
- Parser.cs
- PersistenceProviderDirectory.cs
- WebPartZoneBase.cs
- WindowsListViewGroupHelper.cs
- PolygonHotSpot.cs
- DecoderBestFitFallback.cs
- SqlDataSourceEnumerator.cs
- StylusDevice.cs
- GridItem.cs
- CuspData.cs