Для изменения размера нажмите или перетащите

NotifyPropertyChangedInvocatorAttribute - класс

Indicates that the method is contained in a type that implements INotifyPropertyChanged interface and this method is used to notify that some property value changed.
Иерархия наследования
SystemObject
  SystemAttribute
    Tessa.Properties.ResharperNotifyPropertyChangedInvocatorAttribute

Пространство имён:  Tessa.Properties.Resharper
Сборка:  Tessa (в Tessa.dll) Версия: 3.5.0.19
Синтаксис
[AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public sealed class NotifyPropertyChangedInvocatorAttribute : Attribute

Тип NotifyPropertyChangedInvocatorAttribute предоставляет следующие члены.

Конструкторы
  ИмяОписание
Открытый методNotifyPropertyChangedInvocatorAttribute
Initializes a new instance of the NotifyPropertyChangedInvocatorAttribute class.
Открытый методNotifyPropertyChangedInvocatorAttribute(String)
Initializes a new instance of the NotifyPropertyChangedInvocatorAttribute class.
В начало страницы
Свойства
  ИмяОписание
Открытое свойствоParameterName
Gets the parameter name.
Открытое свойствоTypeId
When implemented in a derived class, gets a unique identifier for this Attribute.
(Унаследован от Attribute.)
В начало страницы
Методы
  ИмяОписание
Открытый методEquals
Returns a value that indicates whether this instance is equal to a specified object.
(Унаследован от Attribute.)
Защищённый методFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Унаследован от Object.)
Открытый методGetHashCode
Returns the hash code for this instance.
(Унаследован от Attribute.)
Открытый методGetType
Gets the Type of the current instance.
(Унаследован от Object.)
Открытый методIsDefaultAttribute
When overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Унаследован от Attribute.)
Открытый методMatch
When overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Унаследован от Attribute.)
Защищённый методMemberwiseClone
Creates a shallow copy of the current Object.
(Унаследован от Object.)
Открытый методToString
Returns a string that represents the current object.
(Унаследован от Object.)
В начало страницы
Методы расширения
  ИмяОписание
Открытый метод расширенияGet (Определяется ComHelper.)
Открытый метод расширенияInternalMarkerCanvas
Возвращает маркер аннотации
(Определяется AnnotationInternalsAccessor.)
Открытый метод расширенияInvoke (Определяется ComHelper.)
Открытый метод расширенияSet (Определяется ComHelper.)
В начало страницы
Заметки
The method should be non-static and conform to one of the supported signatures: NotifyChanged(string)NotifyChanged(params string[])NotifyChanged{T}(Expression{Func{T}})NotifyChanged{T,U}(Expression{Func{T,U}})SetProperty{T}(ref T, T, string)
Примеры
public class Foo : INotifyPropertyChanged
{
  public event PropertyChangedEventHandler PropertyChanged;

  [NotifyPropertyChangedInvocator]
  protected virtual void NotifyChanged(string propertyName)
  {}

  private string _name;
  public string Name
  {
    get { return _name; }
    set
    {
      _name = value;
      NotifyChanged("LastName"); // Warning
    }
  }
}
Examples of generated notifications: NotifyChanged("Property")NotifyChanged(() => Property)NotifyChanged((VM x) => x.Property)SetProperty(ref myField, value, "Property")
См. также