Ejemplo n.º 1
0
 public bool GetAvailableConfig(long sessionID, out Scada.Agent.ConfigParts configParts)
 {
     Scada.Agent.Test.AgentSvcRef.GetAvailableConfigRequest inValue = new Scada.Agent.Test.AgentSvcRef.GetAvailableConfigRequest();
     inValue.sessionID = sessionID;
     Scada.Agent.Test.AgentSvcRef.GetAvailableConfigResponse retVal = ((Scada.Agent.Test.AgentSvcRef.AgentSvc)(this)).GetAvailableConfig(inValue);
     configParts = retVal.configParts;
     return(retVal.GetAvailableConfigResult);
 }
Ejemplo n.º 2
0
 public GetAvailableConfigResponse(bool GetAvailableConfigResult, Scada.Agent.ConfigParts configParts)
 {
     this.GetAvailableConfigResult = GetAvailableConfigResult;
     this.configParts = configParts;
 }
Ejemplo n.º 3
0
 public bool GetAvailableConfig(out Scada.Agent.ConfigParts configParts, long sessionID)
 {
     return(base.Channel.GetAvailableConfig(out configParts, sessionID));
 }