BuildingCoder.CmdIdling.Execute C# (CSharp) Метод

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

public Execute ( ExternalCommandData commandData, string &message, ElementSet elements ) : System.Result
commandData ExternalCommandData
message string
elements ElementSet
Результат System.Result
        public Result Execute(
            ExternalCommandData commandData,
            ref string message,
            ElementSet elements)
        {
            Log( "Execute begin" );

              UIApplication uiapp = commandData.Application;

              uiapp.Idling
            += new EventHandler<IdlingEventArgs>(
              OnIdling );

              Log( "Execute end" );

              return Result.Succeeded;
        }