Indicates whether the device is currently selected.
public bool Selected {get; set;} Public Property Selected As Boolean A value of true indicates that the device is currently selected. Otherwise, the value is false. Assignment could raise an error exception. For more information, refer to the ErrorCode.
Indicates whether the device is currently selected.
using Leadtools;using Leadtools.MediaStreaming;public Server _server = null;public bool _result = false;public void PrintCaptureDevicesExample(){try{string strDevices = "";// create an instance of the server object_server = new Leadtools.MediaStreaming.Server();// retrieve a copy of the Live StreamsLiveStreams Streams = _server.GetLiveStreams();// create live stream just to enumerate the devicesLiveStream stream = Streams.CreateLiveStream();// print the capture devices to a stringstrDevices += "--- Live Stream Devices---\n\n";//Get the Video DevicesDevices VideoDevices = stream.VideoDevices;strDevices += string.Format("--- Video Devices (count = {0}) ---\n\n", VideoDevices.Count.ToString());// Print Video Devicesint nIndex = 0;foreach (Device Device in VideoDevices){strDevices += string.Format("Device[{0}]: FriendlyName = \"{1}\".\n", nIndex.ToString(), Device.FriendlyName);strDevices += string.Format("Name = \"{0}\".\n", nIndex.ToString(), Device.Name);if (Device.Selected)strDevices += "Selected = \"true\" \n";elsestrDevices += "Selected = \"false\" \n";nIndex++;}//Get the Audio DevicesDevices AudioDevices = stream.AudioDevices;strDevices += string.Format("--- Audio Devices (count = {0}) ---\n\n", AudioDevices.ToString());// Print Audio DevicesnIndex = 0;foreach (Device Device in AudioDevices){strDevices += string.Format("Device[{0}]: FriendlyName = \"{1}\".\n", nIndex.ToString(), Device.FriendlyName);strDevices += string.Format("Name = \"{0}\".\n", nIndex.ToString(), Device.Name);if (Device.Selected)strDevices += "Selected = \"true\" \n";elsestrDevices += "Selected = \"false\" \n";nIndex++;}// display a message contains the Devices information stringMessageBox.Show(strDevices, "LEADTOOLS Media Streaming Examples", MessageBoxButtons.OK, MessageBoxIcon.Information);_result = true;}catch (Exception){_result = false;}}
Imports LeadtoolsImports Leadtools.MediaStreamingPublic _server As Server = NothingPublic _result As Boolean = FalsePublic Sub PrintCaptureDevicesExample()TryDim strDevices As String = ""' create an instance of the server object_server = New Leadtools.MediaStreaming.Server()' retrieve a copy of the Live StreamsDim Streams As LiveStreams = _server.GetLiveStreams()' create live stream just to enumerate the devicesDim stream As LiveStream = Streams.CreateLiveStream()' print the capture devices to a stringstrDevices &= "--- Live Stream Devices---" & Constants.vbLf + Constants.vbLf'Get the Video DevicesDim VideoDevices As Devices = stream.VideoDevicesstrDevices &= String.Format("--- Video Devices (count = {0}) ---" & Constants.vbLf + Constants.vbLf, VideoDevices.Count.ToString())' Print Video DevicesDim nIndex As Integer = 0For Each Device As Device In VideoDevicesstrDevices &= String.Format("Device[{0}]: FriendlyName = ""{1}""." & Constants.vbLf, nIndex.ToString(), Device.FriendlyName)strDevices &= String.Format("Name = ""{0}""." & Constants.vbLf, nIndex.ToString(), Device.Name)If Device.Selected ThenstrDevices &= "Selected = ""true"" " & Constants.vbLfElsestrDevices &= "Selected = ""false"" " & Constants.vbLfEnd IfnIndex += 1Next Device'Get the Audio DevicesDim AudioDevices As Devices = stream.AudioDevicesstrDevices &= String.Format("--- Audio Devices (count = {0}) ---" & Constants.vbLf + Constants.vbLf, AudioDevices.ToString())' Print Audio DevicesnIndex = 0For Each Device As Device In AudioDevicesstrDevices &= String.Format("Device[{0}]: FriendlyName = ""{1}""." & Constants.vbLf, nIndex.ToString(), Device.FriendlyName)strDevices &= String.Format("Name = ""{0}""." & Constants.vbLf, nIndex.ToString(), Device.Name)If Device.Selected ThenstrDevices &= "Selected = ""true"" " & Constants.vbLfElsestrDevices &= "Selected = ""false"" " & Constants.vbLfEnd IfnIndex += 1Next Device' display a message contains the Devices information stringMessageBox.Show(strDevices, "LEADTOOLS Media Streaming Examples", MessageBoxButtons.OK, MessageBoxIcon.Information)_result = TrueCatch e1 As Exception_result = FalseEnd TryEnd Sub
|
Products |
Support |
Feedback: Selected Property (Device) - Leadtools.MediaStreaming |
Introduction |
Help Version 19.0.2017.6.16
|

Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.