bitmessage.network.Pubkey.GetAll C# (CSharp) Method

GetAll() public static method

public static GetAll ( SQLite.SQLiteAsyncConnection conn ) : IEnumerable
conn SQLite.SQLiteAsyncConnection
return IEnumerable
        public static IEnumerable<Pubkey> GetAll(SQLiteAsyncConnection conn)
        {
            return conn.Table<Pubkey>().ToListAsync().Result;
        }