Share via


IWMSAdminArchiveSink.AvailableDiskSpace (C#)

banner art

Previous Next

IWMSAdminArchiveSink.AvailableDiskSpace (C#)

The AvailableDiskSpace property retrieves the amount of remaining disk space that can be used for archiving.

Syntax

  int = IWMSAdminArchiveSink.AvailableDiskSpace;

Property Value

int containing the available disk space in kilobytes.

If this property fails, it throws an exception.

Number Description
0x8000FFFF The WMS Archive Data Writer plug-in cannot be found.

Remarks

This property is read-only. The value returned is relative to a valid template path. For example, if you try to access a folder and do not have the proper permissions for it, the value returned by calling AvailableDiskSpace will be relative to the previous valid template path.

Example Code

using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;

// Declare variables.
WMSServer Server;
IWMSBroadcastPublishingPoint BCPubPoint;
IWMSPlugin Plugin;
IWMSAdminArchiveSink AdminArchiveSink;

try {
    // Create a new WMSServer object.
    Server = new WMSServerClass();

    // Add a new broadcast publishing point.
    BCPubPoint = (IWMSBroadcastPublishingPoint)
                 Server.PublishingPoints.Add("NewPubPoint",
                                           WMS_PUBLISHING_POINT_CATEGORY.
                                           WMS_PUBLISHING_POINT_BROADCAST,
                                           "c:\\wmpub\\wmroot\\playlist.wsx");

    // Retrieve the plug-in to be configured.
    Plugin = BCPubPoint.BroadcastDataSinks[
                             "WMS Archive Data Writer"];

    // Retrieve the custom interface of the plug-in.
    AdminArchiveSink =
        (IWMSAdminArchiveSink)Plugin.CustomInterface;

    // Retrieve the amount of disk space available for archiving.
    int iDiskSpace = AdminArchiveSink.AvailableDiskSpace;
}
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