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);