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 |
WMS_FILE_TYPE
The WMS_FILE_TYPE enumeration type indicates whether a source is a directory, a media file, a playlist, or a stream format file.
Syntax
typedef enum WMS_FILE_TYPE{
WMS_FILE_UNSPECIFIED = 0,
WMS_FILE_DIRECTORY = 1,
WMS_FILE_MEDIA = 2,
WMS_FILE_PLAYLIST = 3,
WMS_FILE_STREAM_FORMAT = 4,
WMS_FILE_REMOTE_FILE = 5
};
Members
WMS_FILE_UNSPECIFIED
The file type is either unknown or unspecified.
WMS_FILE_DIRECTORY
The item is a directory.
WMS_FILE_MEDIA
The item is a media file.
WMS_FILE_PLAYLIST
The item is a playlist.
WMS_FILE_REMOTE_FILE
The item is a remote file.
WMS_FILE_STREAM_FORMAT
The item is a stream format file.
Remarks
You can retrieve the file type by using the Type property on the IWMSFileDescription interface.
Requirements
Header: wmsserver.h.
Library: WMSServerTypeLib.dll.
Platform: Windows Server 2003 family, Windows Server 2008 family.
See Also
- Enumeration Types
- IWMSFileDescription.Type (C#)
- IWMSFileDescription.Type (Visual Basic .NET)
- IWMSFileDescription::get_Type
| Previous | Next |