Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / ControlValuePropertyAttribute.cs / 1305376 / 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)] 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)] 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
- CollectionView.cs
- StandardBindingElementCollection.cs
- IntegerValidator.cs
- TimeZoneNotFoundException.cs
- TreeNodeStyleCollection.cs
- pingexception.cs
- NetworkStream.cs
- TextOnlyOutput.cs
- MultiByteCodec.cs
- SqlTriggerContext.cs
- EdmToObjectNamespaceMap.cs
- NativeObjectSecurity.cs
- TableRowGroupCollection.cs
- SafeSystemMetrics.cs
- XmlSchemaInclude.cs
- CellNormalizer.cs
- EmptyStringExpandableObjectConverter.cs
- CookieProtection.cs
- OdbcDataAdapter.cs
- NoneExcludedImageIndexConverter.cs
- DetailsViewInsertEventArgs.cs
- XmlTextReaderImpl.cs
- HttpWebRequest.cs
- DependencyPropertyChangedEventArgs.cs
- DetailsViewPagerRow.cs
- ProtocolsConfiguration.cs
- Dictionary.cs
- ScriptingJsonSerializationSection.cs
- LinqToSqlWrapper.cs
- RefExpr.cs
- Win32MouseDevice.cs
- UInt64.cs
- MenuItem.cs
- SafeFileMappingHandle.cs
- WebResponse.cs
- FontConverter.cs
- AssertUtility.cs
- AppDomainUnloadedException.cs
- LoadedEvent.cs
- Message.cs
- ResourcesBuildProvider.cs
- CopyOfAction.cs
- ToolStripOverflowButton.cs
- FeatureAttribute.cs
- HtmlWindowCollection.cs
- TextElementEnumerator.cs
- KeyValueInternalCollection.cs
- DataColumnPropertyDescriptor.cs
- ContentWrapperAttribute.cs
- SizeAnimationBase.cs
- DesignTimeDataBinding.cs
- DataServiceKeyAttribute.cs
- HuffmanTree.cs
- GroupBoxRenderer.cs
- ListCollectionView.cs
- ContainerParagraph.cs
- DataStreamFromComStream.cs
- ConstructorBuilder.cs
- SetStateEventArgs.cs
- MethodCallTranslator.cs
- JpegBitmapEncoder.cs
- SerializationHelper.cs
- RoutedEventValueSerializer.cs
- DES.cs
- LassoHelper.cs
- _SafeNetHandles.cs
- GraphicsContainer.cs
- DataSvcMapFile.cs
- OleDbWrapper.cs
- TreeNodeBindingCollection.cs
- DecimalStorage.cs
- PathGradientBrush.cs
- DbTransaction.cs
- SafeFileHandle.cs
- OutputCacheProfile.cs
- BindingCollection.cs
- SerializableAttribute.cs
- LoadWorkflowByInstanceKeyCommand.cs
- ActivityXRefPropertyEditor.cs
- UnsignedPublishLicense.cs
- Helpers.cs
- PropertyFilterAttribute.cs
- EmptyStringExpandableObjectConverter.cs
- _BasicClient.cs
- CommonDialog.cs
- assemblycache.cs
- ToolStripGripRenderEventArgs.cs
- FieldBuilder.cs
- EmptyEnumerator.cs
- WebPartUtil.cs
- EpmSyndicationContentDeSerializer.cs
- GestureRecognitionResult.cs
- WebPartConnectionsConnectVerb.cs
- CaseExpr.cs
- SynchronizedReadOnlyCollection.cs
- ExecutionTracker.cs
- ScriptManager.cs
- CoTaskMemHandle.cs
- XPathAncestorQuery.cs
- XmlILCommand.cs