public uint?GetPropertyUInt32Value(PropertyStoreProperty property) { if (_propertyStore == null) { return(null); } using (var propertyValue = new NativeMethods.PROPVARIANT()) { _propertyStore.GetValue(NativeMethods.GetPkey(property), propertyValue); return(propertyValue.GetUInt32()); } }
public uint? GetPropertyUInt32Value(PropertyStoreProperty property) { if (_propertyStore == null) return null; using (var propertyValue = new NativeMethods.PROPVARIANT()) { _propertyStore.GetValue(NativeMethods.GetPkey(property), propertyValue); return propertyValue.GetUInt32(); } }