IWMSPlugins.Refresh (C#)
.gif)
| Previous | Next |
IWMSPlugins.Refresh (C#)
The Refresh method updates the list of IWMSPlugin objects in the IWMSPlugins collection to reflect the plug-ins that are registered for use by the server.
Syntax
IWMSPlugins .Refresh();
Parameters
This method takes no parameters.
Return Values
This method does not return a value.
Example Code
using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;
// Declare variables.
WMSServer Server;
IWMSPlugins Plugins;
try {
// Create a new WMSServer object.
Server = new WMSServerClass();
// Retrieve the IWMSPlugins object.
Plugins = Server.EventHandlers;
// Refresh the collection of plug-ins in case
// of state changes.
Plugins.Refresh();
}
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 |