toNative() private méthode

private toNative ( ) : ADLAuthDetails
Résultat ADLAuthDetails
Exemple #1
0
        internal ADLConnectionDescription toNative()
        {
            var cd = new ADLConnectionDescription();

            cd.autopublishAudio = autopublishAudio;
            cd.autopublishVideo = autopublishVideo;
            cd.scopeId          = StringHelper.toNative(scopeId);
            cd.url         = StringHelper.toNative(url);
            cd.authDetails = authDetails.toNative();
            cd.videoStream = videoStream.toNative();
            return(cd);
        }