IWMSActiveScriptAdmin.FileName (Visual Basic .NET)
.gif)
| Previous | Next |
IWMSActiveScriptAdmin.FileName (Visual Basic .NET)
The FileName property specifies and retrieves the path to the script file.
Syntax
IWMSActiveScriptAdmin .FileName = String String = IWMSActiveScriptAdmin.FileName
Property Value
A String containing the error text.
Example Code
Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices
Private Sub SetFilePath()
' Declare variables.
Dim Server As WMSServer
Dim Plugin As IWMSPlugin
Dim ActiveScriptAdmin As IWMSActiveScriptAdmin
Try
' Create the WMSServer object.
Server = New WMSServer()
' Retrieve the plug-in to be configured.
Plugin = Server.EventHandlers.Item( _
"WMS Active Script Event Handler")
' Retrieve the custom interface of the plug-in.
ActiveScriptAdmin = Plugin.CustomInterface
' Set the current script file name.
ActiveScriptAdmin.FileName = "C:\Scripts\TestScript.vbs"
Catch excCom As COMException
' TODO: Handle COM exceptions.
Catch exc As Exception
' TODO: Handle errors.
Finally
' TODO: Clean-up code goes here.
End Try
End Sub
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 |