Appccelerate.StateMachine.Machine.GuardHolders.ArgumentLessGuardHolder.Describe C# (CSharp) Метод

Describe() публичный Метод

Describes the guard.
public Describe ( ) : string
Результат string
        public string Describe()
        {
            return this.guard.GetMethodInfo().GetCustomAttributes(typeof(CompilerGeneratedAttribute), false).Any() ? "anonymous" : this.guard.GetMethodInfo().Name;
        }
    }