Microbat Error The method or operation is not implemented

Hi Team,

I am trying to create a microbot. But if I run the bot I am getting this error The method or operation is not implemented. and I also attach my code file please help the same.Class1.txt (1.5 KB)

Hi,

Instead of . Similar for destination. Also ensure you have imported required dll for ZipFIle object
[ArgumentDirection(Direction = DirectionType.Input)]
public string source { get; set; }

Use:

 [ArgumentDirection(Direction = DirectionType.Input)]
    public string source{ 

get
{
return source;
}

set
{
source = value;
}
}