Documentation > CMS Template API Library > Asset > GetMeta()
GetMeta
Returns the meta data in a Dictionary.
public Dictionary<String,String> GetMeta()
Returns
A dictionary containing all of this asset's meta data.
Parameters
Name | Description | Type |
---|---|---|
Code Example
C#
Sample:
1 2 | Dictionary< string , string > metaData = asset.GetMeta(); asset.SaveMeta(metaData); |