ClrPlus.Scripting.Languages.PropertySheetV3.Mapping.View.GetMetadataValues C# (CSharp) Method

GetMetadataValues() public method

public GetMetadataValues ( string metadataName, IValueContext context, bool checkParent = true ) : IEnumerable
metadataName string
context IValueContext
checkParent bool
return IEnumerable
        public IEnumerable<string> GetMetadataValues(string metadataName, IValueContext context, bool checkParent = true)
        {
            return Metadata.ContainsKey(metadataName) ? Metadata[metadataName].GetValues(context) : (ParentView == null || checkParent == false) ? Enumerable.Empty<string>() : ParentView.GetMetadataValues(metadataName, context);
        }