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

Authorization() private method

private Authorization ( ) : String
return String
        private String Authorization()
        {
            Debug.Assert(!string.IsNullOrEmpty(this.appKey));
            Debug.Assert(!string.IsNullOrEmpty(this.masterSecret));
            String origin = this.appKey + ":" + this.masterSecret;
            return Base64.getBase64Encode(origin);
        }