toNative() private method

private toNative ( ) : ADLConnectionDescription
return ADLConnectionDescription
Beispiel #1
0
        /**
         * CloudeoService - Connectivity
         * =====================================================================
         */

        /// <inheritdoc />
        public void connect(Responder <object> responder,
                            ConnectionDescription connDescription)
        {
            if (!isPlatformInitialized <object>(responder))
            {
                return;
            }

            var cdn = connDescription.toNative();

            NativeAPI.adl_connect(
                _voidRCallback,
                _platformHandle,
                saveResponder(responder),
                ref cdn);
        }