cn.jpush.api.device.DeviceClient.DeviceClient C# (CSharp) Method

DeviceClient() public method

public DeviceClient ( String appKey, String masterSecret ) : System
appKey String
masterSecret String
return System
        public DeviceClient(String appKey, String masterSecret)
        {
            Preconditions.checkArgument(!String.IsNullOrEmpty(appKey), "appKey should be set");
            Preconditions.checkArgument(!String.IsNullOrEmpty(masterSecret), "masterSecret should be set");
            this.appKey = appKey;
            this.masterSecret = masterSecret;
        }