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;
        }
    }