LoadManifest
(
filePath
)
|
Loads the manifest from file and into a Manifest structure.
Signature
Manifest Meta.Conduit.IManifestLoader.LoadManifest(string filePath) Parameters filePath: string
The path to the manifest file.
Returns Manifest
The loaded manifest object.
|
LoadManifestAsync
(
filePath
)
|
Loads the manifest from file and into a Manifest structure asynchronously.
Signature
Task<Manifest> Meta.Conduit.IManifestLoader.LoadManifestAsync(string filePath) Parameters filePath: string
The path to the manifest file.
Returns Task< Manifest >
The loaded manifest object.
|
LoadManifestFromJson
(
manifestText
)
|
Loads the manifest from an input string into a Manifest structure.
Signature
Manifest Meta.Conduit.IManifestLoader.LoadManifestFromJson(string manifestText) Parameters manifestText: string
Plain text content of Manifest.
Returns Manifest
The loaded manifest object.
|
LoadManifestFromJsonAsync
(
manifestText
)
|
Loads the manifest from an input string into a Manifest structure asynchronously.
Signature
Task<Manifest> Meta.Conduit.IManifestLoader.LoadManifestFromJsonAsync(string manifestText) Parameters manifestText: string
Plain text content of Manifest.
Returns Task< Manifest >
The loaded manifest object.
|