MsrTracks Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Lists the possible combinations of track data to be read.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum MsrTracks
[<System.Flags>]
type MsrTracks =
Public Enum MsrTracks
- Inheritance
-
MsrTracks
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No track will be obtained. |
Track1 | 1 | Obtain track 1. |
Track2 | 2 | Obtain track 2. |
Tracks12 | 3 | Obtain tracks 1 and 2. |
Track3 | 4 | Obtain track 3. |
Tracks13 | 5 | Obtain tracks 1 and 3. |
Tracks23 | 6 | Obtain tracks 2 and 3. |
Tracks123 | 7 | Obtain tracks 1, 2, and 3. |
Track4 | 8 | Obtain track 4. |
Tracks14 | 9 | Obtain tracks 1 and 4. |
Tracks24 | 10 | Obtain tracks 2 and 4. |
Tracks124 | 11 | Obtain tracks 1, 2, and 4. |
Tracks34 | 12 | Obtain tracks 3 and 4. |
Tracks134 | 13 | Obtain tracks 1, 3, and 4. |
Tracks234 | 14 | Obtain tracks 2, 3, and 4. |
Tracks1234 | 15 | Obtain tracks 1, 2, 3, and 4. |