Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 855177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T08:02:15+00:00 2026-05-15T08:02:15+00:00

From what I understand in the documentation, it returns null if it fails, but

  • 0

From what I understand in the documentation, it returns null if it fails, but it seems to me there is an exception ready for every fail scenario.

In what standard scenario will this function actually return a null value?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T08:02:15+00:00Added an answer on May 15, 2026 at 8:02 am

    If you look at the code through Reflector, you will see that if the return from the native method Win32Native.RegCreateKeyEx() returns anything other than an error code of 0 or if the result of the operation is null, it will then return null back to you.

    A possible failure here is if the incorrect permissions are used, causing an access denied error code to be returned.

    The code behind this method is as follows:

    [ComVisible(false)]
    public unsafe RegistryKey CreateSubKey(string subkey, RegistryKeyPermissionCheck permissionCheck, RegistrySecurity registrySecurity)
    {
        ValidateKeyName(subkey);
        ValidateKeyMode(permissionCheck);
        this.EnsureWriteable();
        subkey = FixupName(subkey);
        if (!this.remoteKey)
        {
            RegistryKey key = this.InternalOpenSubKey(subkey, permissionCheck != RegistryKeyPermissionCheck.ReadSubTree);
            if (key != null)
            {
                this.CheckSubKeyWritePermission(subkey);
                this.CheckSubTreePermission(subkey, permissionCheck);
                key.checkMode = permissionCheck;
                return key;
            }
        }
        this.CheckSubKeyCreatePermission(subkey);
        Win32Native.SECURITY_ATTRIBUTES structure = null;
        if (registrySecurity != null)
        {
            structure = new Win32Native.SECURITY_ATTRIBUTES();
            structure.nLength = Marshal.SizeOf(structure);
            byte[] securityDescriptorBinaryForm = registrySecurity.GetSecurityDescriptorBinaryForm();
            byte* pDest = stackalloc byte[1 * securityDescriptorBinaryForm.Length];
            Buffer.memcpy(securityDescriptorBinaryForm, 0, pDest, 0, securityDescriptorBinaryForm.Length);
            structure.pSecurityDescriptor = pDest;
        }
        int lpdwDisposition = 0;
        SafeRegistryHandle hkResult = null;
        int errorCode = Win32Native.RegCreateKeyEx(this.hkey, subkey, 0, null, 0, GetRegistryKeyAccess(permissionCheck != RegistryKeyPermissionCheck.ReadSubTree), structure, out hkResult, out lpdwDisposition);
        if ((errorCode == 0) && !hkResult.IsInvalid)
        {
            RegistryKey key2 = new RegistryKey(hkResult, permissionCheck != RegistryKeyPermissionCheck.ReadSubTree, false, this.remoteKey, false);
            this.CheckSubTreePermission(subkey, permissionCheck);
            key2.checkMode = permissionCheck;
            if (subkey.Length == 0)
            {
                key2.keyName = this.keyName;
                return key2;
            }
            key2.keyName = this.keyName + @"\" + subkey;
            return key2;
        }
        if (errorCode != 0)
        {
            this.Win32Error(errorCode, this.keyName + @"\" + subkey);
        }
        return null;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As far as I understand from the documentation the QUdpSocket are async but, still,
I understand what wrappers are, but from the documentation you seem to be able
Using a delegate I can call any function asynchronously. From the documentation I understand
I found that Maven implies specific directory layout. But I don't understand from here:
From what I understand there is no way of type-checking the messages send in
I want to use SHA1 function from Linux libraries ( documentation ) which returns
According to Java documentation, the read() method returns: -1 if there is no more
I'm trying to sort by converted column, but psql returns error: SELECT * FROM
As you can understand from title, i modified Settings.cs file.Added some properties, some code
From what I understand IMAP requires a connection per each user. I'm writing an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.