Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
.gif)
| Previous | Next |
IWMSActiveScriptAdmin.EnableDebugging (Visual Basic .NET)
The EnableDebugging property specifies and retrieves a Boolean value that indicates whether the Microsoft Script Debugger can be used to debug the script.
Syntax
IWMSActiveScriptAdmin .EnableDebugging = Boolean Boolean = IWMSActiveScriptAdmin.EnableDebugging
Property Value
A Boolean indicating whether the Microsoft Script Debugger can be used.
Remarks
To enable script debugging, a script debugger must be installed on your computer and you must configure Windows Media Services to run in the System account. For more information, see WMS Active Script Event Handler Plug-in Properties.
Example Code
Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices
Private Sub SetDebugging()
' 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 a Boolean value indicating whether script
' debugging is enabled.
ActiveScriptAdmin.EnableDebugging = True
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 |