示例#1
0
 public PerfNetClient.InstanceType[] perfmonListInstance(string Host, PerfNetClient.ObjectNameType Object)
 {
     PerfNetClient.perfmonListInstanceRequest inValue = new PerfNetClient.perfmonListInstanceRequest();
     inValue.Host   = Host;
     inValue.Object = Object;
     PerfNetClient.perfmonListInstanceResponse retVal = ((PerfNetClient.PerfmonPortType)(this)).perfmonListInstance(inValue);
     return(retVal.perfmonListInstanceReturn);
 }
示例#2
0
 public System.Threading.Tasks.Task <PerfNetClient.perfmonCollectCounterDataResponse> perfmonCollectCounterDataAsync(string Host, PerfNetClient.ObjectNameType Object)
 {
     PerfNetClient.perfmonCollectCounterDataRequest inValue = new PerfNetClient.perfmonCollectCounterDataRequest();
     inValue.Host   = Host;
     inValue.Object = Object;
     return(((PerfNetClient.PerfmonPortType)(this)).perfmonCollectCounterDataAsync(inValue));
 }
示例#3
0
 public PerfNetClient.CounterInfoType[] perfmonCollectCounterData(string Host, PerfNetClient.ObjectNameType Object)
 {
     PerfNetClient.perfmonCollectCounterDataRequest inValue = new PerfNetClient.perfmonCollectCounterDataRequest();
     inValue.Host   = Host;
     inValue.Object = Object;
     PerfNetClient.perfmonCollectCounterDataResponse retVal = ((PerfNetClient.PerfmonPortType)(this)).perfmonCollectCounterData(inValue);
     return(retVal.perfmonCollectCounterDataReturn);
 }
示例#4
0
 public perfmonCollectCounterDataRequest(string Host, PerfNetClient.ObjectNameType Object)
 {
     this.Host   = Host;
     this.Object = Object;
 }
示例#5
0
 public perfmonListInstanceRequest(string Host, PerfNetClient.ObjectNameType Object)
 {
     this.Host   = Host;
     this.Object = Object;
 }