File: artifacts\obj\Microsoft.Win32.Registry\Debug\net9.0\Microsoft.Win32.Registry.notsupported.cs
Project: src\src\libraries\Microsoft.Win32.Registry\src\Microsoft.Win32.Registry.csproj (Microsoft.Win32.Registry)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ------------------------------------------------------------------------------
// Changes to this file must follow the https://aka.ms/api-review process.
// ------------------------------------------------------------------------------
 
namespace Microsoft.Win32
{
    public static partial class Registry
    {
        public static readonly Microsoft.Win32.RegistryKey ClassesRoot;
        public static readonly Microsoft.Win32.RegistryKey CurrentConfig;
        public static readonly Microsoft.Win32.RegistryKey CurrentUser;
        public static readonly Microsoft.Win32.RegistryKey LocalMachine;
        public static readonly Microsoft.Win32.RegistryKey PerformanceData;
        public static readonly Microsoft.Win32.RegistryKey Users;
        public static object? GetValue(string keyName, string? valueName, object? defaultValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public static void SetValue(string keyName, string? valueName, object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public static void SetValue(string keyName, string? valueName, object value, Microsoft.Win32.RegistryValueKind valueKind) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
    }
    public enum RegistryHive
    {
        ClassesRoot = -2147483648,
        CurrentUser = -2147483647,
        LocalMachine = -2147483646,
        Users = -2147483645,
        PerformanceData = -2147483644,
        CurrentConfig = -2147483643,
    }
    public sealed partial class RegistryKey : System.MarshalByRefObject, System.IDisposable
    {
        internal RegistryKey() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.SafeHandles.SafeRegistryHandle Handle { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
        public string Name { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
        public int SubKeyCount { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
        public int ValueCount { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
        public Microsoft.Win32.RegistryView View { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
        public void Close() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey CreateSubKey(string subkey) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, Microsoft.Win32.RegistryOptions registryOptions) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, Microsoft.Win32.RegistryOptions registryOptions, System.Security.AccessControl.RegistrySecurity? registrySecurity) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, System.Security.AccessControl.RegistrySecurity? registrySecurity) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, bool writable) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey CreateSubKey(string subkey, bool writable, Microsoft.Win32.RegistryOptions options) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void DeleteSubKey(string subkey) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void DeleteSubKey(string subkey, bool throwOnMissingSubKey) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void DeleteSubKeyTree(string subkey) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void DeleteSubKeyTree(string subkey, bool throwOnMissingSubKey) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void DeleteValue(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void DeleteValue(string name, bool throwOnMissingValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void Dispose() { }
        public void Flush() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public static Microsoft.Win32.RegistryKey FromHandle(Microsoft.Win32.SafeHandles.SafeRegistryHandle handle) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public static Microsoft.Win32.RegistryKey FromHandle(Microsoft.Win32.SafeHandles.SafeRegistryHandle handle, Microsoft.Win32.RegistryView view) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public System.Security.AccessControl.RegistrySecurity GetAccessControl() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public System.Security.AccessControl.RegistrySecurity GetAccessControl(System.Security.AccessControl.AccessControlSections includeSections) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public string[] GetSubKeyNames() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public object? GetValue(string? name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        [return: System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute("defaultValue")]
        public object? GetValue(string? name, object? defaultValue) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        [return: System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute("defaultValue")]
        public object? GetValue(string? name, object? defaultValue, Microsoft.Win32.RegistryValueOptions options) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryValueKind GetValueKind(string? name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public string[] GetValueNames() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public static Microsoft.Win32.RegistryKey OpenBaseKey(Microsoft.Win32.RegistryHive hKey, Microsoft.Win32.RegistryView view) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public static Microsoft.Win32.RegistryKey OpenRemoteBaseKey(Microsoft.Win32.RegistryHive hKey, string machineName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public static Microsoft.Win32.RegistryKey OpenRemoteBaseKey(Microsoft.Win32.RegistryHive hKey, string machineName, Microsoft.Win32.RegistryView view) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey? OpenSubKey(string name) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey? OpenSubKey(string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey? OpenSubKey(string name, Microsoft.Win32.RegistryKeyPermissionCheck permissionCheck, System.Security.AccessControl.RegistryRights rights) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey? OpenSubKey(string name, bool writable) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public Microsoft.Win32.RegistryKey? OpenSubKey(string name, System.Security.AccessControl.RegistryRights rights) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void SetAccessControl(System.Security.AccessControl.RegistrySecurity registrySecurity) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void SetValue(string? name, object value) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void SetValue(string? name, object value, Microsoft.Win32.RegistryValueKind valueKind) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public override string ToString() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
    }
    public enum RegistryKeyPermissionCheck
    {
        Default = 0,
        ReadSubTree = 1,
        ReadWriteSubTree = 2,
    }
    [System.FlagsAttribute]
    public enum RegistryOptions
    {
        None = 0,
        Volatile = 1,
    }
    public enum RegistryValueKind
    {
        None = -1,
        Unknown = 0,
        String = 1,
        ExpandString = 2,
        Binary = 3,
        DWord = 4,
        MultiString = 7,
        QWord = 11,
    }
    [System.FlagsAttribute]
    public enum RegistryValueOptions
    {
        None = 0,
        DoNotExpandEnvironmentNames = 1,
    }
    public enum RegistryView
    {
        Default = 0,
        Registry64 = 256,
        Registry32 = 512,
    }
}
namespace Microsoft.Win32.SafeHandles
{
    public sealed partial class SafeRegistryHandle : Microsoft.Win32.SafeHandles.SafeHandleZeroOrMinusOneIsInvalid
    {
        public SafeRegistryHandle() : base (default(bool)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public SafeRegistryHandle(System.IntPtr preexistingHandle, bool ownsHandle) : base (default(bool)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        protected override bool ReleaseHandle() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
    }
}
namespace System.Security.AccessControl
{
    public sealed partial class RegistryAccessRule : System.Security.AccessControl.AccessRule
    {
        public RegistryAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.AccessControlType type) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AccessControlType)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public RegistryAccessRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AccessControlType)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public RegistryAccessRule(string identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.AccessControlType type) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AccessControlType)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public RegistryAccessRule(string identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AccessControlType)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public System.Security.AccessControl.RegistryRights RegistryRights { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
    }
    public sealed partial class RegistryAuditRule : System.Security.AccessControl.AuditRule
    {
        public RegistryAuditRule(System.Security.Principal.IdentityReference identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AuditFlags flags) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AuditFlags)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public RegistryAuditRule(string identity, System.Security.AccessControl.RegistryRights registryRights, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AuditFlags flags) : base (default(System.Security.Principal.IdentityReference), default(int), default(bool), default(System.Security.AccessControl.InheritanceFlags), default(System.Security.AccessControl.PropagationFlags), default(System.Security.AccessControl.AuditFlags)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public System.Security.AccessControl.RegistryRights RegistryRights { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
    }
    [System.FlagsAttribute]
    public enum RegistryRights
    {
        QueryValues = 1,
        SetValue = 2,
        CreateSubKey = 4,
        EnumerateSubKeys = 8,
        Notify = 16,
        CreateLink = 32,
        Delete = 65536,
        ReadPermissions = 131072,
        WriteKey = 131078,
        ExecuteKey = 131097,
        ReadKey = 131097,
        ChangePermissions = 262144,
        TakeOwnership = 524288,
        FullControl = 983103,
    }
    public sealed partial class RegistrySecurity : System.Security.AccessControl.NativeObjectSecurity
    {
        public RegistrySecurity() : base (default(bool), default(System.Security.AccessControl.ResourceType)) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public override System.Type AccessRightType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
        public override System.Type AccessRuleType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
        public override System.Type AuditRuleType { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  } }
        public override System.Security.AccessControl.AccessRule AccessRuleFactory(System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AccessControlType type) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void AddAccessRule(System.Security.AccessControl.RegistryAccessRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void AddAuditRule(System.Security.AccessControl.RegistryAuditRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public override System.Security.AccessControl.AuditRule AuditRuleFactory(System.Security.Principal.IdentityReference identityReference, int accessMask, bool isInherited, System.Security.AccessControl.InheritanceFlags inheritanceFlags, System.Security.AccessControl.PropagationFlags propagationFlags, System.Security.AccessControl.AuditFlags flags) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public bool RemoveAccessRule(System.Security.AccessControl.RegistryAccessRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void RemoveAccessRuleAll(System.Security.AccessControl.RegistryAccessRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void RemoveAccessRuleSpecific(System.Security.AccessControl.RegistryAccessRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public bool RemoveAuditRule(System.Security.AccessControl.RegistryAuditRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void RemoveAuditRuleAll(System.Security.AccessControl.RegistryAuditRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void RemoveAuditRuleSpecific(System.Security.AccessControl.RegistryAuditRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void ResetAccessRule(System.Security.AccessControl.RegistryAccessRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void SetAccessRule(System.Security.AccessControl.RegistryAccessRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
        public void SetAuditRule(System.Security.AccessControl.RegistryAuditRule rule) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_Registry);  }
    }
}