3 instantiations of HKEY
System.Windows.Forms.Primitives (3)
Windows.Win32.HKEY.g.cs (3)
41 public static explicit operator HKEY(void* value) => new HKEY(value); 57 public static explicit operator HKEY(IntPtr value) => new HKEY((void*)value.ToPointer()); 59 public static explicit operator HKEY(UIntPtr value) => new HKEY((void*)value.ToPointer());
19 references to HKEY
System.Windows.Forms.Primitives (19)
Windows.Win32.HKEY.g.cs (13)
25 : IEquatable<HKEY> 35 internal static HKEY Null => default; 39 public static implicit operator void*(HKEY value) => value.Value; 41 public static explicit operator HKEY(void* value) => new HKEY(value); 43 public static bool operator ==(HKEY left, HKEY right) => left.Value == right.Value; 45 public static bool operator !=(HKEY left, HKEY right) => !(left == right); 47 public bool Equals(HKEY other) => this.Value == other.Value; 49 public override bool Equals(object obj) => obj is HKEY other && this.Equals(other); 55 public static implicit operator IntPtr(HKEY value) => new IntPtr(value.Value); 57 public static explicit operator HKEY(IntPtr value) => new HKEY((void*)value.ToPointer()); 59 public static explicit operator HKEY(UIntPtr value) => new HKEY((void*)value.ToPointer());
Windows.Win32.PInvoke.ADVAPI32.dll.g.cs (4)
40 internal static extern winmdroot.Foundation.WIN32_ERROR RegCloseKey(winmdroot.System.Registry.HKEY hKey); 42 /// <inheritdoc cref="RegLoadMUIString(winmdroot.System.Registry.HKEY, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.PWSTR, uint, uint*, uint, winmdroot.Foundation.PCWSTR)"/> 44 internal static unsafe winmdroot.Foundation.WIN32_ERROR RegLoadMUIString(winmdroot.System.Registry.HKEY hKey, string pszValue, winmdroot.Foundation.PWSTR pszOutBuf, uint cbOutBuf, uint* pcbData, uint Flags, string pszDirectory) 87 internal static extern unsafe winmdroot.Foundation.WIN32_ERROR RegLoadMUIString(winmdroot.System.Registry.HKEY hKey, winmdroot.Foundation.PCWSTR pszValue, winmdroot.Foundation.PWSTR pszOutBuf, uint cbOutBuf, [Optional] uint* pcbData, uint Flags, winmdroot.Foundation.PCWSTR pszDirectory);
Windows\Win32\Pinvoke.RegLoadMUIString.cs (2)
11/// <inheritdoc cref="RegLoadMUIString(System.Registry.HKEY, string, PWSTR, uint, uint*, uint, string)"/> 23(System.Registry.HKEY)key.Handle.DangerousGetHandle(),