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.
You can use the IWMSACLCheckAdmin object to retrieve an IWMSAccessControlListIWMSAccessControlList Object (Visual Basic .NET) containing a collection of IWMSAccessControlEntry objects. IWMSAccessControlEntry objects specify read and write permissions for a publishing point or file system.
The IWMSACLCheckAdmin object exposes the following property.
Property |
Description |
---|---|
AccessControlList |
Retrieves an IWMSAccessControlList object containing a collection of access control entries. |
Example
The following example illustrates how to retrieve an IWMSACLCheckAdmin object.
Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices
Private Sub RetrieveObj()
' Declare variables.
Dim Server As WMSServer
Dim Plugin As IWMSPlugin
Dim ACLCheckAdmin As IWMSACLCheckAdmin
Try
' Create the WMSServer object.
Server = New WMSServer()
' Retrieve the plug-in to be configured.
Plugin = Server.EventHandlers.Item( _
"WMS Publishing Points ACL Authorization")
' Retrieve the custom interface of the plug-in.
ACLCheckAdmin = Plugin.CustomInterface
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
See Also
Reference
IWMSAccessControlEntry Object (Visual Basic .NET)
IWMSAccessControlList Object (Visual Basic .NET)