26 lines
821 B
C#
26 lines
821 B
C#
using System;
|
|
|
|
namespace JetBrains.Annotations
|
|
{
|
|
// Token: 0x02000436 RID: 1078
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|
public sealed class NotifyPropertyChangedInvocatorAttribute : Attribute
|
|
{
|
|
// Token: 0x06003842 RID: 14402 RVA: 0x00060A0C File Offset: 0x0005EC0C
|
|
public NotifyPropertyChangedInvocatorAttribute()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06003843 RID: 14403 RVA: 0x00060A18 File Offset: 0x0005EC18
|
|
public NotifyPropertyChangedInvocatorAttribute(string parameterName)
|
|
{
|
|
this.ParameterName = parameterName;
|
|
}
|
|
|
|
// Token: 0x17000CEC RID: 3308
|
|
// (get) Token: 0x06003844 RID: 14404 RVA: 0x00060A28 File Offset: 0x0005EC28
|
|
// (set) Token: 0x06003845 RID: 14405 RVA: 0x00060A44 File Offset: 0x0005EC44
|
|
public string ParameterName { get; private set; }
|
|
}
|
|
}
|