Click or drag to resize

TableCollectionNames Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Returns a list of Table names.

Namespace:  Telogis.GeoBase.Transactional
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public List<string> Names { get; }

Property Value

Type: ListString
Examples
This code snippet lists all the table names from a given transactional repository.
C#
void ListTables(TransactionalRepository tr) { 
    Console.WriteLine("Repository contains these tables:");
    foreach (String name in tr.Tables.Names) {
        Console.WriteLine("\t{0}", name);
    }
}
See Also