示例#1
0
        /// <summary>
        /// 
        /// </summary>
        public FSCommand()
        {
            _TriggerAction = AVM1Actions.ActionGetURL2;
            _Machine = new CheckMachine.Machine();

            _Check = new List<BuildingBlocks.AbstractBuildingBlock>();
            _Check.Add( new BuildingBlocks.ArgN( 1 ) );
            _Check.Add( new BuildingBlocks.BeginsWith( "FSCommand:", true ) );
            _Check.Add( new BuildingBlocks.ConditionalIfFalseExecOrig() );
        }
示例#2
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="number"></param>
 /// <returns></returns>
 internal static string ActionName(AVM1Actions number)
 {
     return Enum.GetName(typeof(AVM1Actions), number);
 }