<mx:Extension> Element

Extensibility point for the app.

This element is optional.

Syntax

<mx:Extension
  Category = string >
</mx:Extension>  

Attributes

Category
The type of app extensibility point. Can be one of the following values:

Value Description
xbox.live Used to declare your title’s title ID and service configuration ID.
xbox.media.capture Used to specify whether GameDVR and broadcasting should be disabled.
windows.xbox.networking Used to specify your title’s networking settings. See Specifying the Secure Device Association Templates for your App for more information.
xbox.system.resources Used to specify the usage of the system GPU reserve and 7th processing core.

Element information

Parent elements Extensions
Child elements mx:XboxLive (Category=”xbox.live”), mx:XboxMediaCapture (Category=”xbox.media.capture”), mx:XboxNetworkingManifest (Category=”windows.xbox.networking”), mx:XboxSystemResources (Category=”xbox.system.resources”)

Example

<Extensions>
  <mx:Extension Category="xbox.live">
    <mx:XboxLive TitleId="your titleID" PrimaryServiceConfigId="your SCID" />
  </mx:Extension>
  <mx:Extension Category="xbox.media.capture">
    <mx:XboxMediaCapture BlockGameDVR="true" BlockBroadcast="true" />
  </mx:Extension>  
</Extensions>  

See also

<Extension> Element