Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / ControlValuePropertyAttribute.cs / 2 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AddInSegmentDirectoryNotFoundException.cs
- AnchoredBlock.cs
- TaskForm.cs
- HtmlInputButton.cs
- Convert.cs
- NameScopePropertyAttribute.cs
- OdbcParameter.cs
- SignedPkcs7.cs
- ButtonBase.cs
- ThicknessAnimation.cs
- TargetControlTypeAttribute.cs
- RangeValidator.cs
- ActivityXRefConverter.cs
- View.cs
- WebAdminConfigurationHelper.cs
- Vector3D.cs
- PenContexts.cs
- DataStreamFromComStream.cs
- WebBrowserNavigatingEventHandler.cs
- OSEnvironmentHelper.cs
- SharedUtils.cs
- TextDecorationCollection.cs
- XNodeNavigator.cs
- ExchangeUtilities.cs
- SqlHelper.cs
- UnicodeEncoding.cs
- Base64Decoder.cs
- Rectangle.cs
- QilList.cs
- ObjectViewFactory.cs
- EnvelopedPkcs7.cs
- formatter.cs
- HMACRIPEMD160.cs
- XmlConverter.cs
- Span.cs
- JavaScriptString.cs
- FontCollection.cs
- DesignerProperties.cs
- XmlMemberMapping.cs
- FocusChangedEventArgs.cs
- RegionData.cs
- CriticalFinalizerObject.cs
- BitHelper.cs
- Attributes.cs
- dbenumerator.cs
- PipeConnection.cs
- SmiRecordBuffer.cs
- XamlStyleSerializer.cs
- TextViewBase.cs
- ConditionalExpression.cs
- MultiPageTextView.cs
- PropertyHelper.cs
- ComAdminWrapper.cs
- TextBlock.cs
- Point4D.cs
- ConfigXmlElement.cs
- PersonalizableAttribute.cs
- AsyncOperation.cs
- Fonts.cs
- Constraint.cs
- SinglePageViewer.cs
- EntityDataSourceQueryBuilder.cs
- DataViewSetting.cs
- EndpointAddress10.cs
- DataGridViewUtilities.cs
- RecordManager.cs
- WeakReferenceList.cs
- Bookmark.cs
- TextViewSelectionProcessor.cs
- PtsCache.cs
- TreeNodeCollectionEditor.cs
- ExtensionSimplifierMarkupObject.cs
- OdbcException.cs
- SerializationStore.cs
- DbDataRecord.cs
- TextTrailingCharacterEllipsis.cs
- EpmTargetPathSegment.cs
- AutoResizedEvent.cs
- SemanticTag.cs
- RightsManagementUser.cs
- CodeTypeMemberCollection.cs
- CacheMode.cs
- TimeZone.cs
- DataGridViewLinkColumn.cs
- CompiledXpathExpr.cs
- BamlRecordWriter.cs
- CodeFieldReferenceExpression.cs
- BrowserDefinition.cs
- ResourcesGenerator.cs
- GroupBoxRenderer.cs
- Focus.cs
- RIPEMD160Managed.cs
- SafeLocalMemHandle.cs
- XPathMultyIterator.cs
- ContentIterators.cs
- StringOutput.cs
- ToolStripDropTargetManager.cs
- ConditionalAttribute.cs
- Input.cs
- RemoveStoryboard.cs