Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- DbMetaDataColumnNames.cs
- BadImageFormatException.cs
- ChunkedMemoryStream.cs
- AuthorizationRuleCollection.cs
- EntitySqlQueryCacheEntry.cs
- NodeFunctions.cs
- RotateTransform3D.cs
- EmptyControlCollection.cs
- ReadOnlyAttribute.cs
- PrintEvent.cs
- UpDownBase.cs
- OutputScope.cs
- WebPartEditorOkVerb.cs
- SamlAuthenticationClaimResource.cs
- EntityDataSourceStatementEditorForm.cs
- BindingWorker.cs
- CompressedStack.cs
- BaseResourcesBuildProvider.cs
- LoginView.cs
- PageCodeDomTreeGenerator.cs
- DesignerAttribute.cs
- ImportCatalogPart.cs
- AspNetCompatibilityRequirementsMode.cs
- ChangesetResponse.cs
- MasterPageParser.cs
- NativeCppClassAttribute.cs
- TypeDescriptionProviderAttribute.cs
- CapiSafeHandles.cs
- ControlPaint.cs
- SqlDelegatedTransaction.cs
- SchemaReference.cs
- AutomationIdentifier.cs
- AnimationClockResource.cs
- WebControlAdapter.cs
- DelegatingTypeDescriptionProvider.cs
- BufferModeSettings.cs
- CodeVariableReferenceExpression.cs
- AppearanceEditorPart.cs
- TextFormatter.cs
- ValueTable.cs
- NamespaceMapping.cs
- QilGeneratorEnv.cs
- IconHelper.cs
- LeaseManager.cs
- Solver.cs
- ErasingStroke.cs
- TreeWalkHelper.cs
- XPathItem.cs
- HierarchicalDataBoundControlAdapter.cs
- TransformerInfo.cs
- MachineKeyConverter.cs
- Int32.cs
- EventArgs.cs
- ReferenceEqualityComparer.cs
- SqlTransaction.cs
- ByteBufferPool.cs
- SiteMapNode.cs
- AsyncStreamReader.cs
- DefaultParameterValueAttribute.cs
- Facet.cs
- OdbcErrorCollection.cs
- WindowsToolbar.cs
- XmlSchemaAny.cs
- ListBoxItemAutomationPeer.cs
- CallbackHandler.cs
- SqlErrorCollection.cs
- OutputCacheProfileCollection.cs
- EventBookmark.cs
- NoClickablePointException.cs
- AuthenticationConfig.cs
- DataGridView.cs
- InvalidPrinterException.cs
- SafeSystemMetrics.cs
- InstanceDataCollectionCollection.cs
- initElementDictionary.cs
- TraceLevelStore.cs
- QuaternionAnimation.cs
- TempFiles.cs
- ContentFileHelper.cs
- AccessibleObject.cs
- Size.cs
- EditorZone.cs
- TemplateBamlTreeBuilder.cs
- PassportAuthenticationEventArgs.cs
- UInt64Converter.cs
- TextSimpleMarkerProperties.cs
- InfoCardProofToken.cs
- Hash.cs
- ComponentGlyph.cs
- DateTimeUtil.cs
- BrowserCapabilitiesFactory.cs
- SecurityUtils.cs
- Utils.cs
- LayoutUtils.cs
- UserPersonalizationStateInfo.cs
- DifferencingCollection.cs
- _ScatterGatherBuffers.cs
- HorizontalAlignConverter.cs
- WebProxyScriptElement.cs
- Point3DConverter.cs