Appccelerate.StateMachine.Machine.GuardHolders.ArgumentLessGuardHolder.Describe C# (CSharp) Méthode

Describe() public méthode

Describes the guard.
public Describe ( ) : string
Résultat string
        public string Describe()
        {
            return this.guard.GetMethodInfo().GetCustomAttributes(typeof(CompilerGeneratedAttribute), false).Any() ? "anonymous" : this.guard.GetMethodInfo().Name;
        }
    }