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 |
IWMSServer.CacheProxy (Visual Basic .NET)
The CacheProxy property retrieves an IWMSPlugins object containing a collection of cache plug-ins that can be used to control the caching policy of the server.
Syntax
IWMSPlugins = IWMSServer.CacheProxy
Property Value
An IWMSPlugins object containing the collection of cache plug-ins.
Remarks
This property is read-only.
Example Code
Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices
Private Sub GetCacheProxy()
' Declare variables.
Dim Server As WMSServer
Dim Plugins As IWMSPlugins
Try
' Create the WMSServer object.
Server = New WMSServer()
' Retrieve a pointer to an IWMSPlugins interface
' containing cache proxy plug-ins.
Plugins = Server.CacheProxy
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
- IWMSCacheProxyPlugin Object (Visual Basic .NET)
- IWMSPlugins Object (Visual Basic .NET)
- IWMSServer Object (Visual Basic .NET)
| Previous | Next |