Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / AmbientValueAttribute.cs / 1 / AmbientValueAttribute.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")] [AttributeUsage(AttributeTargets.All)] public sealed class AmbientValueAttribute : Attribute { private readonly object value; ///Specifies the ambient value for a property. The ambient value is the value you /// can set into a property to make it inherit its ambient. ////// public AmbientValueAttribute(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("Ambient 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 AmbientValueAttribute(char value) { this.value = value; } ///Initializes a new instance of the ///class using a Unicode /// character. /// public AmbientValueAttribute(byte value) { this.value = value; } ///Initializes a new instance of the ///class using an 8-bit unsigned /// integer. /// public AmbientValueAttribute(short value) { this.value = value; } ///Initializes a new instance of the ///class using a 16-bit signed /// integer. /// public AmbientValueAttribute(int value) { this.value = value; } ///Initializes a new instance of the ///class using a 32-bit signed /// integer. /// public AmbientValueAttribute(long value) { this.value = value; } ///Initializes a new instance of the ///class using a 64-bit signed /// integer. /// public AmbientValueAttribute(float value) { this.value = value; } ///Initializes a new instance of the ///class using a /// single-precision floating point /// number. /// public AmbientValueAttribute(double value) { this.value = value; } ///Initializes a new instance of the ///class using a /// double-precision floating point /// number. /// public AmbientValueAttribute(bool value) { this.value = value; } ///Initializes a new instance of the ///class using a /// value. /// public AmbientValueAttribute(string value) { this.value = value; } ///Initializes a new instance of the ///class using a . /// public AmbientValueAttribute(object value) { this.value = value; } ///Initializes a new instance of the ////// class. /// public object Value { get { return value; } } public override bool Equals(object obj) { if (obj == this) { return true; } AmbientValueAttribute other = obj as AmbientValueAttribute; 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(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets the ambient value of the property this /// attribute is /// bound to. /// ///// 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")] [AttributeUsage(AttributeTargets.All)] public sealed class AmbientValueAttribute : Attribute { private readonly object value; ///Specifies the ambient value for a property. The ambient value is the value you /// can set into a property to make it inherit its ambient. ////// public AmbientValueAttribute(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("Ambient 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 AmbientValueAttribute(char value) { this.value = value; } ///Initializes a new instance of the ///class using a Unicode /// character. /// public AmbientValueAttribute(byte value) { this.value = value; } ///Initializes a new instance of the ///class using an 8-bit unsigned /// integer. /// public AmbientValueAttribute(short value) { this.value = value; } ///Initializes a new instance of the ///class using a 16-bit signed /// integer. /// public AmbientValueAttribute(int value) { this.value = value; } ///Initializes a new instance of the ///class using a 32-bit signed /// integer. /// public AmbientValueAttribute(long value) { this.value = value; } ///Initializes a new instance of the ///class using a 64-bit signed /// integer. /// public AmbientValueAttribute(float value) { this.value = value; } ///Initializes a new instance of the ///class using a /// single-precision floating point /// number. /// public AmbientValueAttribute(double value) { this.value = value; } ///Initializes a new instance of the ///class using a /// double-precision floating point /// number. /// public AmbientValueAttribute(bool value) { this.value = value; } ///Initializes a new instance of the ///class using a /// value. /// public AmbientValueAttribute(string value) { this.value = value; } ///Initializes a new instance of the ///class using a . /// public AmbientValueAttribute(object value) { this.value = value; } ///Initializes a new instance of the ////// class. /// public object Value { get { return value; } } public override bool Equals(object obj) { if (obj == this) { return true; } AmbientValueAttribute other = obj as AmbientValueAttribute; 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(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets the ambient 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
- RolePrincipal.cs
- GuidelineSet.cs
- TreeNodeMouseHoverEvent.cs
- MetadataArtifactLoaderComposite.cs
- ipaddressinformationcollection.cs
- MediaScriptCommandRoutedEventArgs.cs
- EncryptedData.cs
- CmsUtils.cs
- LocatorGroup.cs
- XamlPointCollectionSerializer.cs
- FileDialogPermission.cs
- InfoCardXmlSerializer.cs
- ListViewItemMouseHoverEvent.cs
- AppDomainResourcePerfCounters.cs
- OleDbTransaction.cs
- VideoDrawing.cs
- PanelDesigner.cs
- XmlILTrace.cs
- ConfigurationHandlersInstallComponent.cs
- Formatter.cs
- SlotInfo.cs
- TagPrefixAttribute.cs
- ValidatedControlConverter.cs
- ByteAnimationUsingKeyFrames.cs
- ImmutableObjectAttribute.cs
- oledbmetadatacollectionnames.cs
- XsdDateTime.cs
- RotateTransform3D.cs
- FieldAccessException.cs
- MappedMetaModel.cs
- FlowLayoutPanel.cs
- XmlBinaryWriter.cs
- BooleanFunctions.cs
- Trace.cs
- BCryptNative.cs
- XmlSerializerImportOptions.cs
- TabItemAutomationPeer.cs
- TreeChangeInfo.cs
- EmptyControlCollection.cs
- SafeReversePInvokeHandle.cs
- Int64.cs
- DrawTreeNodeEventArgs.cs
- XPathConvert.cs
- Int16.cs
- WinEventWrap.cs
- MappedMetaModel.cs
- TimeSpan.cs
- TemplatedMailWebEventProvider.cs
- wgx_exports.cs
- Camera.cs
- MailMessageEventArgs.cs
- Pkcs9Attribute.cs
- DelegateArgument.cs
- DataServiceQueryContinuation.cs
- CategoryNameCollection.cs
- AnimationClock.cs
- HashSet.cs
- uribuilder.cs
- ToolBarButtonClickEvent.cs
- SimpleTypeResolver.cs
- PointLightBase.cs
- WaitForChangedResult.cs
- RoutedEventHandlerInfo.cs
- EdmError.cs
- AxHost.cs
- LayoutTableCell.cs
- FragmentNavigationEventArgs.cs
- PublisherMembershipCondition.cs
- Pkcs9Attribute.cs
- SafeArrayRankMismatchException.cs
- OutputCacheSettings.cs
- CopyAttributesAction.cs
- __ConsoleStream.cs
- SetterBase.cs
- SkipStoryboardToFill.cs
- propertytag.cs
- TcpChannelListener.cs
- EncoderParameters.cs
- BindingWorker.cs
- IntegerCollectionEditor.cs
- templategroup.cs
- WebPartCatalogAddVerb.cs
- PropertyValidationContext.cs
- BamlResourceDeserializer.cs
- WindowAutomationPeer.cs
- SelectionEditingBehavior.cs
- SecurityElementBase.cs
- FilterException.cs
- PathSegment.cs
- QilInvokeEarlyBound.cs
- ObfuscationAttribute.cs
- SmiConnection.cs
- DecoderExceptionFallback.cs
- ToolStripItemBehavior.cs
- mda.cs
- Pen.cs
- ByteStreamMessageUtility.cs
- PolicyUnit.cs
- Command.cs
- GeneratedView.cs