In my testing on the desktop, Office.context.partitionKey is undefined.
In the docs, it states:
Gets a partition key for local storage. Add-ins should use this partition key as part of the storage key to securely store data. The partition key is undefined in environments without partitioning, such as the browser controls for Windows applications.
In the cases where it is defined, what is it partitioning by?
For example, does it refer to:
- A single addin, across all instances, ie. a manifest id
- Each addin instance, ie. each shared runtime environment gets a unique key, say each word document gets a new id
- All potential addins from a single author
- Other
My intuition would say it should be the first option, however I wasn't able to find anything explicit that references this.
What is the partition key partitioning by?