Exemple #1
0
 public PerfNetClient.CounterInfoType[] perfmonCollectSessionData(PerfNetClient.SessionHandleType SessionHandle)
 {
     PerfNetClient.perfmonCollectSessionDataRequest inValue = new PerfNetClient.perfmonCollectSessionDataRequest();
     inValue.SessionHandle = SessionHandle;
     PerfNetClient.perfmonCollectSessionDataResponse retVal = ((PerfNetClient.PerfmonPortType)(this)).perfmonCollectSessionData(inValue);
     return(retVal.perfmonCollectSessionDataReturn);
 }
Exemple #2
0
 public void perfmonRemoveCounter(PerfNetClient.SessionHandleType SessionHandle, PerfNetClient.CounterType[] ArrayOfCounter)
 {
     PerfNetClient.perfmonRemoveCounterRequest inValue = new PerfNetClient.perfmonRemoveCounterRequest();
     inValue.SessionHandle  = SessionHandle;
     inValue.ArrayOfCounter = ArrayOfCounter;
     PerfNetClient.perfmonRemoveCounterResponse retVal = ((PerfNetClient.PerfmonPortType)(this)).perfmonRemoveCounter(inValue);
 }
Exemple #3
0
 public System.Threading.Tasks.Task perfmonCloseSessionAsync(PerfNetClient.SessionHandleType SessionHandle)
 {
     return(base.Channel.perfmonCloseSessionAsync(SessionHandle));
 }
Exemple #4
0
 public void perfmonCloseSession(PerfNetClient.SessionHandleType SessionHandle)
 {
     base.Channel.perfmonCloseSession(SessionHandle);
 }
Exemple #5
0
 public System.Threading.Tasks.Task <PerfNetClient.perfmonCollectSessionDataResponse> perfmonCollectSessionDataAsync(PerfNetClient.SessionHandleType SessionHandle)
 {
     PerfNetClient.perfmonCollectSessionDataRequest inValue = new PerfNetClient.perfmonCollectSessionDataRequest();
     inValue.SessionHandle = SessionHandle;
     return(((PerfNetClient.PerfmonPortType)(this)).perfmonCollectSessionDataAsync(inValue));
 }
Exemple #6
0
 public System.Threading.Tasks.Task <PerfNetClient.perfmonRemoveCounterResponse> perfmonRemoveCounterAsync(PerfNetClient.SessionHandleType SessionHandle, PerfNetClient.CounterType[] ArrayOfCounter)
 {
     PerfNetClient.perfmonRemoveCounterRequest inValue = new PerfNetClient.perfmonRemoveCounterRequest();
     inValue.SessionHandle  = SessionHandle;
     inValue.ArrayOfCounter = ArrayOfCounter;
     return(((PerfNetClient.PerfmonPortType)(this)).perfmonRemoveCounterAsync(inValue));
 }
Exemple #7
0
 public perfmonCollectSessionDataRequest(PerfNetClient.SessionHandleType SessionHandle)
 {
     this.SessionHandle = SessionHandle;
 }
Exemple #8
0
 public perfmonRemoveCounterRequest(PerfNetClient.SessionHandleType SessionHandle, PerfNetClient.CounterType[] ArrayOfCounter)
 {
     this.SessionHandle  = SessionHandle;
     this.ArrayOfCounter = ArrayOfCounter;
 }