Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / DefaultValueAttribute.cs / 1 / DefaultValueAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Serialization.Formatters; using System.Security.Permissions; ////// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1019:DefineAccessorsForAttributeArguments")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1813:AvoidUnsealedAttributes")] [AttributeUsage(AttributeTargets.All)] public class DefaultValueAttribute : Attribute { ///Specifies the default value for a property. ////// This is the default value. /// private object value; ////// public DefaultValueAttribute(Type type, string value) { // The try/catch here is because attributes should never throw exceptions. We would fail to // load an otherwise normal class. try { this.value = TypeDescriptor.GetConverter(type).ConvertFromInvariantString(value); } catch { Debug.Fail("Default value attribute of type " + type.FullName + " threw converting from the string '" + value + "'."); } } ///Initializes a new instance of the ///class, converting the /// specified value to the /// specified type, and using the U.S. English culture as the /// translation /// context. /// public DefaultValueAttribute(char value) { this.value = value; } ///Initializes a new instance of the ///class using a Unicode /// character. /// public DefaultValueAttribute(byte value) { this.value = value; } ///Initializes a new instance of the ///class using an 8-bit unsigned /// integer. /// public DefaultValueAttribute(short value) { this.value = value; } ///Initializes a new instance of the ///class using a 16-bit signed /// integer. /// public DefaultValueAttribute(int value) { this.value = value; } ///Initializes a new instance of the ///class using a 32-bit signed /// integer. /// public DefaultValueAttribute(long value) { this.value = value; } ///Initializes a new instance of the ///class using a 64-bit signed /// integer. /// public DefaultValueAttribute(float value) { this.value = value; } ///Initializes a new instance of the ///class using a /// single-precision floating point /// number. /// public DefaultValueAttribute(double value) { this.value = value; } ///Initializes a new instance of the ///class using a /// double-precision floating point /// number. /// public DefaultValueAttribute(bool value) { this.value = value; } ///Initializes a new instance of the ///class using a /// value. /// public DefaultValueAttribute(string value) { this.value = value; } ///Initializes a new instance of the ///class using a . /// public DefaultValueAttribute(object value) { this.value = value; } ///Initializes a new instance of the ////// class. /// public virtual object Value { get { return value; } } public override bool Equals(object obj) { if (obj == this) { return true; } DefaultValueAttribute other = obj as DefaultValueAttribute; if (other != null) { if (Value != null) { return Value.Equals(other.Value); } else { return (other.Value == null); } } return false; } public override int GetHashCode() { return base.GetHashCode(); } protected void SetValue(object value) { this.value = value; } } }/// Gets the default value of the property this /// attribute is /// bound to. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GridItem.cs
- AutoGeneratedFieldProperties.cs
- IndentTextWriter.cs
- FieldTemplateFactory.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ColorAnimationUsingKeyFrames.cs
- DataGridView.cs
- SecurityPolicySection.cs
- DefinitionBase.cs
- PageHandlerFactory.cs
- TextRange.cs
- CheckoutException.cs
- CompModSwitches.cs
- SplayTreeNode.cs
- DataGrid.cs
- CriticalHandle.cs
- QueryReaderSettings.cs
- DataBoundControlAdapter.cs
- GeneralTransformCollection.cs
- IgnoreDeviceFilterElement.cs
- ConfigErrorGlyph.cs
- EntityDataSourceStatementEditorForm.cs
- WpfXamlType.cs
- ItemType.cs
- ConfigurationSectionHelper.cs
- PointConverter.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- SimpleTypeResolver.cs
- Emitter.cs
- SessionPageStateSection.cs
- XmlWhitespace.cs
- HtmlInputRadioButton.cs
- DefaultProxySection.cs
- DPTypeDescriptorContext.cs
- WindowsListViewItem.cs
- EntityDataSourceUtil.cs
- PerfService.cs
- CryptoStream.cs
- SqlProvider.cs
- HttpServerUtilityWrapper.cs
- SafeNativeMethods.cs
- MasterPageCodeDomTreeGenerator.cs
- HashStream.cs
- DbUpdateCommandTree.cs
- CodeNamespace.cs
- GenericTextProperties.cs
- PrintControllerWithStatusDialog.cs
- FileSystemWatcher.cs
- FixedTextSelectionProcessor.cs
- HandleExceptionArgs.cs
- SqlCacheDependencyDatabaseCollection.cs
- BeginStoryboard.cs
- InputLanguageSource.cs
- GeometryHitTestParameters.cs
- PropertyEmitter.cs
- PolicyConversionContext.cs
- DockPanel.cs
- CodeTypeReferenceExpression.cs
- HostingEnvironmentWrapper.cs
- UIInitializationException.cs
- XmlObjectSerializerWriteContextComplex.cs
- FieldCollectionEditor.cs
- CngKeyBlobFormat.cs
- EventSetter.cs
- ChannelRequirements.cs
- ParameterToken.cs
- SqlVersion.cs
- DataShape.cs
- HtmlInputSubmit.cs
- DictionaryContent.cs
- AbsoluteQuery.cs
- RegexNode.cs
- UnmanagedBitmapWrapper.cs
- CollectionChangedEventManager.cs
- SqlConnectionHelper.cs
- ExecutionContext.cs
- MetadataItemEmitter.cs
- BamlBinaryWriter.cs
- XmlCharacterData.cs
- EntityDescriptor.cs
- CheckBoxList.cs
- PropertyGridView.cs
- ScriptIgnoreAttribute.cs
- TransformerConfigurationWizardBase.cs
- SoapExtensionTypeElement.cs
- HtmlTernaryTree.cs
- LocalizedNameDescriptionPair.cs
- EntityDataSourceWizardForm.cs
- AlternateView.cs
- MeshGeometry3D.cs
- RadioButtonPopupAdapter.cs
- TableParaClient.cs
- NumericUpDownAccelerationCollection.cs
- NetWebProxyFinder.cs
- TextTreeObjectNode.cs
- Rect3DConverter.cs
- COM2PictureConverter.cs
- DynamicExpression.cs
- StringUtil.cs
- Setter.cs