System.Security.Cryptography.ProtectedData.ErrorMayBeCausedByUnloadedProfile C# (CSharp) Метод

ErrorMayBeCausedByUnloadedProfile() приватный статический Метод

private static ErrorMayBeCausedByUnloadedProfile ( int errorCode ) : bool
errorCode int
Результат bool
        private static bool ErrorMayBeCausedByUnloadedProfile(int errorCode)
        {
            // CAPI returns a file not found error if the user profile is not yet loaded
            return errorCode == Interop.Errors.E_FILENOTFOUND ||
                   errorCode == Interop.Errors.ERROR_FILE_NOT_FOUND;
        }