Share via


TransportAction (Compact 7)

3/12/2014

The TransportAction namespace contains constants that each represent a transport action, such as play, record, and so on.

Syntax

namespace TransportAction 
{
  const LPCWSTR
    Play                = L"Play",
    Stop                = L"Stop",
    Pause               = L"Pause", 
    Seek                = L"Seek", 
    Next                = L"Next", 
    Previous            = L"Previous",
    Record              = L"Record";
};

Remarks

The strings represented by these constants are valid values for the AVTransport service's CurrentTransportActions state variable.

You can retrieve the current transport actions using IAVTransport::GetCurrentTransportActions.

For more information about the state variables and valid values defined by the UPnP AV DCP, see UPnP Forum AV Web site.

Requirements

Header

av_upnp.h

Library

Av_upnp.lib

See Also

Reference

AV String Constants
IAVTransport::GetCurrentTransportActions