bool DvProvider::SetPropertyString(PropertyString& aProperty, const Brx& aValue) { if (aProperty.SetValue(aValue)) { TryPublishUpdate(); return true; } return false; }
uint32_t STDCALL ServicePropertySetValueString(ServiceProperty aProperty, const char* aValue) { PropertyString* prop = reinterpret_cast<PropertyString*>(aProperty); ASSERT(prop != NULL); Brhz val(aValue); if (prop->SetValue(val)) { return 1; } return 0; }