ClrPlus.Scripting.Languages.PropertySheetV3.Mapping.View.GetMetadataValues C# (CSharp) Метод

GetMetadataValues() публичный Метод

public GetMetadataValues ( string metadataName, IValueContext context, bool checkParent = true ) : IEnumerable
metadataName string
context IValueContext
checkParent bool
Результат 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);
        }