----------------------------------------------------------------------------------------------------------------------------

Store custom metadata

Store custom metadata using C#

Storing meta data is as easy as storing a normal item in a filestorage. The object to be persisted is simply one of the arguments in the store-methods;

If you don't want to add any custom metadata, you can simply pass the 'null' value to the store methods.

Store custom metadata using the CLI

Since the object to be used as metadata is a C# object, its not possible to specify the custom meta data using the CLI; instead the CLI will always pass 'null', resulting in a EmptyCustomMetaData class to be stored.

----------------------------------------------------------------------------------------------------------------------------