IndexableContent.Properties Property
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.
Gets the content properties.
public:
property IMap<Platform::String ^, Platform::Object ^> ^ Properties { IMap<Platform::String ^, Platform::Object ^> ^ get(); };
IMap<winrt::hstring, IInspectable const&> Properties();
public IDictionary<string,object> Properties { get; }
var iMap = indexableContent.properties;
Public ReadOnly Property Properties As IDictionary(Of String, Object)
Property Value
The collection of properties, represented as a Map of key-value pairs.
Implements
Remarks
While access to this type is read-only, it returns a read/write map.
Add a property to index by calling the Insert method with a standard Windows property name, like System.Author, and a PropertyValue.
When you're done adding properties to the current IndexableContent, call the AddAsync method to add the properties to the system index.