コード例 #1
0
        public static async Task <GetEquipmentRegisterResponse> RegisterExample()
        {
            TelematicsV2 telematicsV2             = new TelematicsV2(publicKey, privateKey, userKey);
            GetEquipmentRegisterResponse response = await telematicsV2.GetEquipmentRegister();

            return(response);
        }
コード例 #2
0
        public static async Task RegisterExample()
        {
            GetEquipmentRegisterResponse response = await DataExchangeAPI.GetEquipmentRegister();

            if (response.Success)
            {
                Process.Start(response.Url);
            }

            await Task.CompletedTask;
        }