IWMSServer.DefaultPath (C#)
Previous | Next |
IWMSServer.DefaultPath (C#)
The DefaultPath property specifies and retrieves the default path name of the server.
Syntax
Server .DefaultPath = String; String = Server.DefaultPath;
Property Value
A string containing the path name.
If this property fails, it throws an exception.
Number | Description |
0x8007000E | There is insufficient memory to complete the function. |
Example Code
using Microsoft.WindowsMediaServices.Interop; using System.Runtime.InteropServices; // Retrieve the default content path for the server. strText = Server.DefaultPath; // Set a new default path for the server. strText = "c:\\asfroot\\"; Server.DefaultPath = strText; } 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 |