public static SfDeviceClient CreateSfDeviceClient(HwProductKey hwProductKey, string certificatePath) { SfDeviceClient sfDeviceClient = CreateSfDeviceClient(hwProductKey); sfDeviceClient._certificatePath = certificatePath; return(sfDeviceClient); }
public static HwProductKey CreateHwProductKey(string email, string password) { HwProductKey hwProductKey = new HwProductKey(); hwProductKey.email = email; hwProductKey.password = password; return(hwProductKey); }
public static SfDeviceClient CreateSfDeviceClient(HwProductKey hwProductKey) { showAppVersion(); if (hwProductKey == null || hwProductKey.email == null || hwProductKey.password == null) { throw new ArgumentNullException(nameof(hwProductKey)); } SfDeviceClient sfDeviceClient = new SfDeviceClient(hwProductKey); return(sfDeviceClient); }
SfDeviceClient(HwProductKey hwProductKey) { _hwProductKey = hwProductKey; _messageCatalogSchemaList = new List <MessageCatalogSchema>(); }