public static async Task <GetEquipmentRegisterResponse> RegisterExample() { TelematicsV2 telematicsV2 = new TelematicsV2(publicKey, privateKey, userKey); GetEquipmentRegisterResponse response = await telematicsV2.GetEquipmentRegister(); return(response); }
public static async Task RegisterExample() { GetEquipmentRegisterResponse response = await DataExchangeAPI.GetEquipmentRegister(); if (response.Success) { Process.Start(response.Url); } await Task.CompletedTask; }