CompilationLoader.SourceLoader Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Given a load function that loads the content of a sequence of files from disk, returns the content for all sources to compile.
public delegate System.Collections.Immutable.ImmutableDictionary<Uri,string> CompilationLoader.SourceLoader(Func<IEnumerable<string>,ImmutableDictionary<Uri,string>> loadFromDisk);
type CompilationLoader.SourceLoader = delegate of Func<seq<string>, ImmutableDictionary<Uri, string>> -> ImmutableDictionary<Uri, string>
Public Delegate Function CompilationLoader.SourceLoader(loadFromDisk As Func(Of IEnumerable(Of String), ImmutableDictionary(Of Uri, String))) As ImmutableDictionary(Of Uri, String)
Parameters
- loadFromDisk
- Func<IEnumerable<String>,ImmutableDictionary<Uri,String>>