// // System.ComponentModel.AmbientValueAttribute // // Authors: // Martin Willemoes Hansen (mwh@sysrq.dk) // // (C) 2003 Martin Willemoes Hansen // namespace System.ComponentModel { [AttributeUsage(AttributeTargets.All)] public sealed class AmbientValueAttribute : Attribute { [MonoTODO] public AmbientValueAttribute (bool value) { } [MonoTODO] public AmbientValueAttribute (byte value) { } [MonoTODO] public AmbientValueAttribute (char value) { } [MonoTODO] public AmbientValueAttribute (double value) { } [MonoTODO] public AmbientValueAttribute (short value) { } [MonoTODO] public AmbientValueAttribute (int value) { } [MonoTODO] public AmbientValueAttribute (long value) { } [MonoTODO] public AmbientValueAttribute (object value) { } [MonoTODO] public AmbientValueAttribute (float value) { } [MonoTODO] public AmbientValueAttribute (string value) { } [MonoTODO] public AmbientValueAttribute (Type type, string value) { } public object Value { [MonoTODO] get { throw new NotImplementedException(); } } [MonoTODO] public override bool Equals (object obj) { throw new NotImplementedException(); } [MonoTODO] public override int GetHashCode() { throw new NotImplementedException(); } [MonoTODO] ~AmbientValueAttribute() { } } }