IWMSAdminNetworkDataSourcePlugin.NumProtocolsSupported (C#)
Previous | Next |
IWMSAdminNetworkDataSourcePlugin.NumProtocolsSupported (C#)
The NumProtocolsSupported property retrieves the number of networking protocols supported by the plug-in for receiving streams.
Syntax
int = IWMSAdminNetworkDataSourcePlugin.NumProtocolsSupported;
Property Value
int containing the number of protocols supported.
Remarks
The NumProtocolsSupported property retrieves the number of protocols that the data source plug-in can use to receive streams. It does not indicate the protocols available for sending streams.
This property is read-only.
Example Code
using Microsoft.WindowsMediaServices.Interop; using System.Runtime.InteropServices; // Declare variables. WMSServer Server; IWMSPlugin Plugin; IWMSAdminNetworkDataSourcePlugin AdminNetDataSrc; try { // Create a new WMSServer object. Server = new WMSServerClass(); // Retrieve the plug-in to be configured. Plugin = Server.DataSources[ "WMS Network Data Source"]; // Retrieve the custom interface of the plug-in. AdminNetDataSrc = (IWMSAdminNetworkDataSourcePlugin)Plugin.CustomInterface; // Retrieve the count of protocols supported by the plug-in. int iValue = AdminNetDataSrc.NumProtocolsSupported; } catch (COMException comExc) { // TODO: Handle COM exceptions. } catch (Exception e) { // TODO: Handle exceptions. }
Requirements
Reference: Add a reference to Microsoft.WindowsMediaServices.
Namespace: Microsoft.WindowsMediaServices.Interop.
Assembly: Microsoft.WindowsMediaServices.dll.
Library: WMSServerTypeLib.dll.
Platform: Windows Server 2003 family, Windows Server 2008 family.
See Also
Previous | Next |