public void SetProperty(SetPropertyOpSettings settings) { SingleResponse response = MakeSingleRequest("SetProperty", settings); if (response != null) { // A Cimom error occurred CheckSingleResponse(response, typeof(CimomError)); } }
public void SetProperty(CimInstanceName instanceName, string propertyName, string value) { SetPropertyOpSettings settings = new SetPropertyOpSettings(instanceName, propertyName, value); SetProperty(settings); }