Bari.Core.Model.Loader.InMemoryYamlModelLoader.Supports C# (CSharp) Method

Supports() public method

Returns true if the loader can load suite model from the given source
public Supports ( string source ) : bool
source string Source, can mean anything (file names, urls, markup, etc.)
return bool
        public bool Supports(string source)
        {
            return source.StartsWith("---");
        }