Can someone please share me a sample C# code for custom activity,
for invoking LogMessage [or any UiPath activity ] from custom activity code.
I have tried this :
LogMessage act = new LogMessage() {};
act.Message = “Hello Test”;
act.Level = UiPath.Core.Activities.LogLevel.Info;
WorkflowInvoker.Invoke(act);
I am able to create custom activities with and without Activity creator,
I have a situation where I need to call get LogMessage and GetAsset from that activity execute method…
thats where I am not able to find a sample code or workaround