Пример #1
0
        // Token: 0x060007CD RID: 1997 RVA: 0x0001EE80 File Offset: 0x0001D080
        private static bool TryGetActiveServerForDatabase(Guid databaseGuid, GetServerForDatabaseFlags flag, out DatabaseLocationInfo databaseLocationInfo, out Exception activeManagerOperationException)
        {
            databaseLocationInfo            = null;
            activeManagerOperationException = null;
            ActiveManagerOperationResult activeManagerOperationResult = ActiveManager.TryGetCachedServerForDatabaseBasic(databaseGuid, flag, out databaseLocationInfo);

            if (activeManagerOperationResult.Succeeded)
            {
                return(true);
            }
            activeManagerOperationException = activeManagerOperationResult.Exception;
            return(false);
        }