Code:
/ FX-1434 / FX-1434 / 1.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
- SystemWebExtensionsSectionGroup.cs
- SqlDeflator.cs
- SqlTriggerContext.cs
- TreeIterators.cs
- IntSecurity.cs
- TriggerAction.cs
- ComponentEditorForm.cs
- XmlSchemaCompilationSettings.cs
- Run.cs
- CommentEmitter.cs
- MaterializeFromAtom.cs
- RegionIterator.cs
- CompilerParameters.cs
- EntityParameterCollection.cs
- AddressingVersion.cs
- CompiledRegexRunnerFactory.cs
- RangeValuePatternIdentifiers.cs
- RightsManagementEncryptionTransform.cs
- HtmlInputRadioButton.cs
- EventSourceCreationData.cs
- StrokeFIndices.cs
- Convert.cs
- DataGridViewCellValidatingEventArgs.cs
- Scripts.cs
- ProcessRequestArgs.cs
- RowVisual.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- TransformedBitmap.cs
- RotationValidation.cs
- CustomErrorsSectionWrapper.cs
- BitmapMetadataEnumerator.cs
- ItemCheckEvent.cs
- CodeAttributeDeclarationCollection.cs
- ResourceManagerWrapper.cs
- RIPEMD160.cs
- XmlNode.cs
- OracleRowUpdatingEventArgs.cs
- TextTabProperties.cs
- WebBrowserSiteBase.cs
- LineUtil.cs
- SqlConnection.cs
- IntPtr.cs
- SmtpNegotiateAuthenticationModule.cs
- SerializableAttribute.cs
- httpstaticobjectscollection.cs
- MasterPageParser.cs
- ActionItem.cs
- PartialList.cs
- BindingCompleteEventArgs.cs
- QilGeneratorEnv.cs
- SecUtil.cs
- PerspectiveCamera.cs
- FormViewRow.cs
- FieldAccessException.cs
- XmlRootAttribute.cs
- SchemaMapping.cs
- Menu.cs
- OleDbStruct.cs
- XmlDataSource.cs
- CallContext.cs
- IndicFontClient.cs
- ParenthesizePropertyNameAttribute.cs
- UrlEncodedParameterWriter.cs
- PerfCounters.cs
- GridViewCancelEditEventArgs.cs
- CustomCategoryAttribute.cs
- Monitor.cs
- ConfigErrorGlyph.cs
- ActivationServices.cs
- WorkflowDefinitionContext.cs
- CodeDelegateInvokeExpression.cs
- DataColumnMapping.cs
- MembershipAdapter.cs
- QualifiedCellIdBoolean.cs
- LinqDataSourceValidationException.cs
- ReferencedType.cs
- CurrencyManager.cs
- ManipulationStartedEventArgs.cs
- HttpCacheVary.cs
- Model3DGroup.cs
- TemplatePropertyEntry.cs
- DataBindingValueUIHandler.cs
- DataTableReaderListener.cs
- CharUnicodeInfo.cs
- ScriptBehaviorDescriptor.cs
- HttpPostedFile.cs
- MergeFilterQuery.cs
- DependencyPropertyValueSerializer.cs
- LinkedResource.cs
- _CommandStream.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- TrustLevel.cs
- ChtmlCommandAdapter.cs
- CalendarModeChangedEventArgs.cs
- ViewBox.cs
- GridViewCommandEventArgs.cs
- ObjectSet.cs
- TableLayoutPanelCellPosition.cs
- MediaContextNotificationWindow.cs
- QilVisitor.cs