예제 #1
0
        public static ICloudAuth Get(CloudAuthType type)
        {
            if (auths.ContainsKey(type))
            {
                return(auths[type]);
            }

            return(null);
        }
예제 #2
0
 public static async Task <ICloudAuth> GetAsync(CloudAuthType type)
 {
     await new WaitUntil(() => !Get(type).IsNull());
     return(Get(type));
 }