// Token: 0x0600032D RID: 813 RVA: 0x000117EC File Offset: 0x0000F9EC
        private static TenantPartitionCacheItem FindTenantInfoByMSAUserNetID(string msaUserNetID)
        {
            PartitionId partitionId;

            if (!ADSessionSettings.IsGlsDisabled)
            {
                TenantPartitionCacheItem result;
                if (ADAccountPartitionLocator.TryLookUpAccountForest(Guid.Empty, null, msaUserNetID, out result))
                {
                    return(result);
                }
            }
            else if (ADAccountPartitionLocator.IsSingleForestTopology(out partitionId))
            {
                ExTraceGlobals.GLSTracer.TraceDebug <string>(0L, "GLS is disabled, performing the only partition lookup for a Microsoft Account (MSA, formerly known as Windows Live ID) user with NetID {0}", msaUserNetID);
                return(ADAccountPartitionLocator.SearchForTenantInfoByUserNetID(msaUserNetID, partitionId));
            }
            return(null);
        }