Beispiel #1
0
 public SetServiceNodeStateRequest(int nodeType, int id, Federal.Storage.ServiceNodeState nodeState, object context)
 {
     this.nodeType  = nodeType;
     this.id        = id;
     this.nodeState = nodeState;
     this.context   = context;
 }
Beispiel #2
0
 public void SetServiceNodeState(int nodeType, int id, Federal.Storage.ServiceNodeState nodeState, object context)
 {
     Neurox.StorageProxy.SetServiceNodeStateRequest inValue = new Neurox.StorageProxy.SetServiceNodeStateRequest();
     inValue.nodeType  = nodeType;
     inValue.id        = id;
     inValue.nodeState = nodeState;
     inValue.context   = context;
     Neurox.StorageProxy.SetServiceNodeStateResponse retVal = ((Neurox.StorageProxy.IStorageService)(this)).SetServiceNodeState(inValue);
 }