GetIdentity() приватный Метод

private GetIdentity ( string key ) : string
key string
Результат string
 public override string GetCachedIdentityId()
 {
     string identityId = null;
     using (var kvStore = new SQLiteLocalStorage())
     {
         identityId = kvStore.GetIdentity(GetNamespacedKey(IDENTITY_ID_CACHE_KEY));
     }
     return identityId;
 }