Пример #1
0
 public updateObjectRequest(string sessionId, uint deviceId, Ricoh.ricoh.deviceManagement.@object @object, Ricoh.ricoh.deviceManagement.property[] options)
 {
     this.sessionId = sessionId;
     this.deviceId  = deviceId;
     this.@object   = @object;
     this.options   = options;
 }
Пример #2
0
 public string updateObject(string sessionId, uint deviceId, Ricoh.ricoh.deviceManagement.@object @object, Ricoh.ricoh.deviceManagement.property[] options, out uint objectId, out string[] postProcess, out Ricoh.ricoh.deviceManagement.property[] truncatedParameter, out int failedPropertyIndex, out string failedCode)
 {
     Ricoh.ricoh.deviceManagement.updateObjectRequest inValue = new Ricoh.ricoh.deviceManagement.updateObjectRequest();
     inValue.sessionId = sessionId;
     inValue.deviceId  = deviceId;
     inValue.@object   = @object;
     inValue.options   = options;
     Ricoh.ricoh.deviceManagement.updateObjectResponse retVal = ((Ricoh.ricoh.deviceManagement.deviceManagementPortType)(this)).updateObject(inValue);
     objectId            = retVal.objectId;
     postProcess         = retVal.postProcess;
     truncatedParameter  = retVal.truncatedParameter;
     failedPropertyIndex = retVal.failedPropertyIndex;
     failedCode          = retVal.failedCode;
     return(retVal.returnValue);
 }