API.WebClients.TransitClient.CreatePlatformTags C# (CSharp) Метод

CreatePlatformTags() публичный Метод

Maps a platform number (5-digit number shown on real bus stop signs) to a platform tag (3-digit internal Connexionz identifier).
public CreatePlatformTags ( ) : int>.Dictionary
Результат int>.Dictionary
        public Dictionary<int, int> CreatePlatformTags() =>
            ConnexionzClient.Platforms.Value.ToDictionary(p => p.PlatformNo, p => p.PlatformTag);