Appccelerate.StateMachine.Machine.GuardHolders.ArgumentLessGuardHolder.Describe C# (CSharp) Method

Describe() public method

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