GetCollectionFilters
Get collections filter's info in metadata.
Parameters
collections|string
- The collection you want to query.
action|Action<CommonResponse<EVMResMetadataCollectionFilter>>
- The callback function of this method is used to receive the results.
Returns
response class
- CommonResponse<EVMResMetadataCollectionFilter>
Code Example
string collection = "collection address";MWSDK.Ethereum.Metadata.GetCollectionFilters(collection, (res) => { CommonResponse<EVMResMetadataCollectionFilter> resObj = res; long code = resObj.code; string message = resObj.message; EVMResMetadataCollectionFilter filterInfo = resObj.data; //todo...});
Edit this page on GitHub