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

GetMetadataValue() public method

public GetMetadataValue ( string metadataName, IValueContext context, bool checkParent = true ) : string
metadataName string
context IValueContext
checkParent bool
return string
        public string GetMetadataValue(string metadataName, IValueContext context, bool checkParent = true)
        {
            return Metadata.ContainsKey(metadataName) ? Metadata[metadataName].GetValue(context) : (ParentView == null || checkParent == false) ? null : ParentView.GetMetadataValue(metadataName, context);
        }