Edit

ActivatableClassAttribute

Defines an attribute of the class that is stored in the Windows Runtime property store.

Element hierarchy

<Package>
   └─ <Extensions>
      └─ <Extension>
         └─ <InProcessServer>
            └─ <ActivatableClass>
               └─ <ActivatableClassAttribute>
         └─ <OutOfProcessServer>
            └─ <ActivatableClass>
               └─ <ActivatableClassAttribute>

Syntax

<Package
  xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10">
  ...
  <ActivatableClassAttribute
    Name = 'A required alphanumeric string between 1 and 255 characters in length. Must begin with an alphabetic character.'
    Type = 'A required string that can have one of the following values: "string", or "integer".'
    Value = 'A required string between 1 and 32767 characters in length.' />
</Package>

Attributes

Attribute Description Data type Required Default value
Name The name of the attribute. A alphanumeric string between 1 and 255 characters in length. Must begin with an alphabetic character. Yes
Type The type of the attribute. A string that can have one of the following values: string, integer. Yes
Value The value of the attribute. A string between 1 and 32767 characters in length. Yes

Child elements

None.

Parent elements

Parent element Description
ActivatableClass
ActivatableClass Declares a runtime class associated with the extensibility point.

Requirements

Item Value
Namespace http://schemas.microsoft.com/appx/manifest/foundation/windows10
Minimum OS Version

Remarks

Examples