public Boolean LocalWindowShareEvent(Endpoint endpoint, LocalWindowShare windowShare, Device.DeviceState state) { Boolean ret = VidyoVirtualShareManagerLocalWindowShareEventNative(objPtr, (endpoint != null) ? endpoint.GetObjectPtr():IntPtr.Zero, (windowShare != null) ? windowShare.GetObjectPtr():IntPtr.Zero, state); return(ret); }
private static extern Boolean VidyoVirtualShareManagerLocalWindowShareEventNative(IntPtr m, IntPtr endpoint, IntPtr windowShare, [MarshalAs(UnmanagedType.I4)] Device.DeviceState state);
public Boolean LocalMonitorEvent(Endpoint endpoint, LocalMonitor monitor, Device.DeviceState state) { Boolean ret = VidyoVirtualShareManagerLocalMonitorEventNative(objPtr, (endpoint != null) ? endpoint.GetObjectPtr():IntPtr.Zero, (monitor != null) ? monitor.GetObjectPtr():IntPtr.Zero, state); return(ret); }
public void OnLocalWindowShareStateUpdated(LocalWindowShare localWindowShare, Device.DeviceState state) { }
public void OnRemoteCameraStateUpdated(RemoteCamera remoteCamera, Participant participant, Device.DeviceState state) { Console.WriteLine("OnRemoteCameraStateUpdated: " + remoteCamera.GetName() + " , state : " + state); }
public void OnLocalMicrophoneStateUpdated(LocalMicrophone localMicrophone, Device.DeviceState state) { }
public void OnRemoteCameraStateUpdated(RemoteCamera remoteCamera, Participant participant, Device.DeviceState state) { RemoteCameraModel model = new RemoteCameraModel(remoteCamera, participant); ViewModel.RemoteCameraStateUpdated(model); }
public Boolean LocalMicrophoneEvent(Endpoint endpoint, LocalMicrophone microphone, Device.DeviceState state) { Boolean ret = VidyoVirtualDeviceManagerLocalMicrophoneEventNative(objPtr, (endpoint != null) ? endpoint.GetObjectPtr():IntPtr.Zero, (microphone != null) ? microphone.GetObjectPtr():IntPtr.Zero, state); return(ret); }
public Boolean LocalSpeakerEvent(Endpoint endpoint, LocalSpeaker speaker, Device.DeviceState state) { Boolean ret = VidyoVirtualDeviceManagerLocalSpeakerEventNative(objPtr, (endpoint != null) ? endpoint.GetObjectPtr():IntPtr.Zero, (speaker != null) ? speaker.GetObjectPtr():IntPtr.Zero, state); return(ret); }
private static extern Boolean VidyoVirtualDeviceManagerLocalSpeakerEventNative(IntPtr m, IntPtr endpoint, IntPtr speaker, [MarshalAs(UnmanagedType.I4)] Device.DeviceState state);
public Boolean LocalCameraEvent(Endpoint endpoint, LocalCamera camera, Device.DeviceState state) { Boolean ret = VidyoVirtualDeviceManagerLocalCameraEventNative(objPtr, (endpoint != null) ? endpoint.GetObjectPtr():IntPtr.Zero, (camera != null) ? camera.GetObjectPtr():IntPtr.Zero, state); return(ret); }
private static extern Boolean VidyoVirtualDeviceManagerLocalMicrophoneEventNative(IntPtr m, IntPtr endpoint, IntPtr microphone, [MarshalAs(UnmanagedType.I4)] Device.DeviceState state);
public void OnLocalMonitorStateUpdated(LocalMonitor localMonitor, Device.DeviceState state) { }
public void OnLocalCameraStateUpdated(LocalCamera localCamera, Device.DeviceState state) { }
public void OnLocalSpeakerStateUpdated(LocalSpeaker localSpeaker, Device.DeviceState state) { }
public void OnRemoteWindowShareStateUpdated(RemoteWindowShare remoteWindowShare, Participant participant, Device.DeviceState state) { }