MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / get_property_string

Method get_property_string

rust/src/settings.rs:482–492  ·  view source on GitHub ↗
(&self, key: S, property: S)

Source from the content-addressed store, hash-verified

480 }
481
482 pub fn get_property_string<S: BnStrCompatible>(&self, key: S, property: S) -> BnString {
483 let key = key.into_bytes_with_nul();
484 let property = property.into_bytes_with_nul();
485 unsafe {
486 BnString::from_raw(BNSettingsQueryPropertyString(
487 self.handle,
488 key.as_ref().as_ptr() as *mut _,
489 property.as_ref().as_ptr() as *mut _,
490 ))
491 }
492 }
493
494 pub fn get_property_string_list<S: BnStrCompatible>(
495 &self,

Callers 1

mainFunction · 0.80

Calls 2

into_bytes_with_nulMethod · 0.80
as_refMethod · 0.45

Tested by

no test coverage detected