BogheCore.Sip.MyAVSession.MakeVideoSharingCall C# (CSharp) Method

MakeVideoSharingCall() public method

public MakeVideoSharingCall ( String remoteUri ) : bool
remoteUri String
return bool
        public bool MakeVideoSharingCall(String remoteUri)
        {
            bool ret;

            base.outgoing = true;

            ActionConfig config =
            #if WINDOWS_PHONE
             org.doubango.WindowsPhone.BackgroundProcessController.Instance.rtActionConfigNew();
            #else
            new ActionConfig();
            #endif
            ret = mSession.call(remoteUri, MediaTypeUtils.ConvertToNative(MediaType.Video), config);
            config.Dispose();

            return ret;
        }