Ejemplo n.º 1
0
 public bool Browse(long sessionID, Scada.Agent.RelPath relPath, out string[] directories, out string[] files)
 {
     Scada.Agent.Test.AgentSvcRef.BrowseRequest inValue = new Scada.Agent.Test.AgentSvcRef.BrowseRequest();
     inValue.sessionID = sessionID;
     inValue.relPath   = relPath;
     Scada.Agent.Test.AgentSvcRef.BrowseResponse retVal = ((Scada.Agent.Test.AgentSvcRef.AgentSvc)(this)).Browse(inValue);
     directories = retVal.directories;
     files       = retVal.files;
     return(retVal.BrowseResult);
 }
Ejemplo n.º 2
0
 public System.Threading.Tasks.Task <Scada.Agent.Test.AgentSvcRef.BrowseResponse> BrowseAsync(Scada.Agent.Test.AgentSvcRef.BrowseRequest request)
 {
     return(base.Channel.BrowseAsync(request));
 }
Ejemplo n.º 3
0
 Scada.Agent.Test.AgentSvcRef.BrowseResponse Scada.Agent.Test.AgentSvcRef.AgentSvc.Browse(Scada.Agent.Test.AgentSvcRef.BrowseRequest request)
 {
     return(base.Channel.Browse(request));
 }