Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / ControlValuePropertyAttribute.cs / 1 / ControlValuePropertyAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; using System.Web.Util; ////// Specifies the default value property for a control. /// [AttributeUsage(AttributeTargets.Class)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ControlValuePropertyAttribute : Attribute { private readonly string _name; private readonly object _defaultValue; ////// Initializes a new instance of the public ControlValuePropertyAttribute(string name) { _name = name; } ///class. /// /// Initializes a new instance of the class, using the specified value as the default value. /// public ControlValuePropertyAttribute(string name, object defaultValue) { _name = name; _defaultValue = defaultValue; } ////// Initializes a new instance of the class, converting the specified value to the /// specified type. /// public ControlValuePropertyAttribute(string name, Type type, string defaultValue) { _name = name; // The try/catch here is because attributes should never throw exceptions. We would fail to // load an otherwise normal class. try { _defaultValue = TypeDescriptor.GetConverter(type).ConvertFromInvariantString(defaultValue); } catch { System.Diagnostics.Debug.Fail("ControlValuePropertyAttribute: Default value of type " + type.FullName + " threw converting from the string '" + defaultValue + "'."); } } ////// Gets the name of the default value property for the control this attribute is bound to. /// public string Name { get { return _name; } } ////// Gets the value of the default value property for the control this attribute is bound to. /// public object DefaultValue { get { return _defaultValue; } } public override bool Equals(object obj) { ControlValuePropertyAttribute other = obj as ControlValuePropertyAttribute; if (other != null) { if (String.Equals(_name, other.Name, StringComparison.Ordinal)) { if (_defaultValue != null) { return _defaultValue.Equals(other.DefaultValue); } else { return (other.DefaultValue == null); } } } return false; } public override int GetHashCode() { return System.Web.Util.HashCodeCombiner.CombineHashCodes( ((Name != null) ? Name.GetHashCode() : 0), ((DefaultValue != null) ? DefaultValue.GetHashCode() : 0)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; using System.Web.Util; ////// Specifies the default value property for a control. /// [AttributeUsage(AttributeTargets.Class)] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ControlValuePropertyAttribute : Attribute { private readonly string _name; private readonly object _defaultValue; ////// Initializes a new instance of the public ControlValuePropertyAttribute(string name) { _name = name; } ///class. /// /// Initializes a new instance of the class, using the specified value as the default value. /// public ControlValuePropertyAttribute(string name, object defaultValue) { _name = name; _defaultValue = defaultValue; } ////// Initializes a new instance of the class, converting the specified value to the /// specified type. /// public ControlValuePropertyAttribute(string name, Type type, string defaultValue) { _name = name; // The try/catch here is because attributes should never throw exceptions. We would fail to // load an otherwise normal class. try { _defaultValue = TypeDescriptor.GetConverter(type).ConvertFromInvariantString(defaultValue); } catch { System.Diagnostics.Debug.Fail("ControlValuePropertyAttribute: Default value of type " + type.FullName + " threw converting from the string '" + defaultValue + "'."); } } ////// Gets the name of the default value property for the control this attribute is bound to. /// public string Name { get { return _name; } } ////// Gets the value of the default value property for the control this attribute is bound to. /// public object DefaultValue { get { return _defaultValue; } } public override bool Equals(object obj) { ControlValuePropertyAttribute other = obj as ControlValuePropertyAttribute; if (other != null) { if (String.Equals(_name, other.Name, StringComparison.Ordinal)) { if (_defaultValue != null) { return _defaultValue.Equals(other.DefaultValue); } else { return (other.DefaultValue == null); } } } return false; } public override int GetHashCode() { return System.Web.Util.HashCodeCombiner.CombineHashCodes( ((Name != null) ? Name.GetHashCode() : 0), ((DefaultValue != null) ? DefaultValue.GetHashCode() : 0)); } } } // 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
- CollectionTypeElement.cs
- TraceUtility.cs
- OneOfTypeConst.cs
- SettingsSavedEventArgs.cs
- WaitForChangedResult.cs
- SerTrace.cs
- FixedHighlight.cs
- SQLByte.cs
- BindingElement.cs
- MessageQueuePermission.cs
- DecimalConstantAttribute.cs
- SecureStringHasher.cs
- SID.cs
- PhoneCall.cs
- FeatureManager.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- FormsAuthenticationEventArgs.cs
- NullReferenceException.cs
- BamlRecords.cs
- ListBindingConverter.cs
- WebConfigurationHost.cs
- DetailsViewRow.cs
- updatecommandorderer.cs
- LogicalExpressionTypeConverter.cs
- BulletedListDesigner.cs
- ClientRuntimeConfig.cs
- ProxyElement.cs
- DataBindEngine.cs
- Trustee.cs
- WebContext.cs
- ActiveXSerializer.cs
- TrackingCondition.cs
- ExpandCollapseProviderWrapper.cs
- FixedMaxHeap.cs
- ExpandCollapsePattern.cs
- ConstantProjectedSlot.cs
- ExpressionLexer.cs
- XslUrlEditor.cs
- _Connection.cs
- FileSystemInfo.cs
- storepermissionattribute.cs
- XPathDocumentBuilder.cs
- BasicKeyConstraint.cs
- SeverityFilter.cs
- Base64Encoder.cs
- TabControlEvent.cs
- SpellerError.cs
- ShimAsPublicXamlType.cs
- WebConfigurationHost.cs
- XmlSchemaRedefine.cs
- XmlSerializableWriter.cs
- HttpCookiesSection.cs
- UseLicense.cs
- RefreshPropertiesAttribute.cs
- MLangCodePageEncoding.cs
- IntSecurity.cs
- CapabilitiesState.cs
- EntityWithChangeTrackerStrategy.cs
- DeviceFiltersSection.cs
- WaitHandleCannotBeOpenedException.cs
- ProcessInputEventArgs.cs
- XmlDataContract.cs
- RenderOptions.cs
- _LocalDataStoreMgr.cs
- Literal.cs
- AlternationConverter.cs
- DataReceivedEventArgs.cs
- UnsignedPublishLicense.cs
- GeneralTransform3DGroup.cs
- LifetimeServices.cs
- SubpageParagraph.cs
- TagPrefixCollection.cs
- FileFormatException.cs
- StorageMappingItemLoader.cs
- WebPartHeaderCloseVerb.cs
- ExpressionVisitor.cs
- ADConnectionHelper.cs
- ChangeInterceptorAttribute.cs
- EngineSiteSapi.cs
- FamilyTypeface.cs
- NativeMethods.cs
- DataGridrowEditEndingEventArgs.cs
- FrameworkElement.cs
- EntityStoreSchemaGenerator.cs
- JulianCalendar.cs
- DispatcherEventArgs.cs
- AnimationException.cs
- DataSpaceManager.cs
- BindingCollectionElement.cs
- FixedFindEngine.cs
- SolidColorBrush.cs
- GeometryModel3D.cs
- TemplateBindingExpressionConverter.cs
- ClientTarget.cs
- ReceiveContent.cs
- FillErrorEventArgs.cs
- SchemaCollectionCompiler.cs
- ObjectListCommandCollection.cs
- XmlSchemaChoice.cs
- RootBrowserWindow.cs