Method
GetApplicationPropertyBool
(string pchAppKey,EVRApplicationProperty eProperty,ref EVRApplicationError peError)
Source from the content-addressed store, hash-verified
| 2809 | return result; |
| 2810 | } |
| 2811 | public bool GetApplicationPropertyBool(string pchAppKey,EVRApplicationProperty eProperty,ref EVRApplicationError peError) |
| 2812 | { |
| 2813 | IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey); |
| 2814 | bool result = FnTable.GetApplicationPropertyBool(pchAppKeyUtf8,eProperty,ref peError); |
| 2815 | Marshal.FreeHGlobal(pchAppKeyUtf8); |
| 2816 | return result; |
| 2817 | } |
| 2818 | public ulong GetApplicationPropertyUint64(string pchAppKey,EVRApplicationProperty eProperty,ref EVRApplicationError peError) |
| 2819 | { |
| 2820 | IntPtr pchAppKeyUtf8 = Utils.ToUtf8(pchAppKey); |
Callers
nothing calls this directly
Tested by
no test coverage detected