| FolderIndexerIndexAsync Method |
Indexes the input folder.
Namespace: Amdl.Maml.ConverterAssembly: Amdl.Maml.Converter (in Amdl.Maml.Converter.dll) Version: 1.0.5821.17059
Syntax public static Task<IEnumerable<TopicData>> IndexAsync(
Paths paths,
CancellationToken cancellationToken,
IProgress<Indicator> progress = null
)
Public Shared Function IndexAsync (
paths As Paths,
cancellationToken As CancellationToken,
Optional progress As IProgress(Of Indicator) = Nothing
) As Task(Of IEnumerable(Of TopicData))
public:
static Task<IEnumerable<TopicData^>^>^ IndexAsync(
Paths paths,
CancellationToken cancellationToken,
IProgress<Indicator>^ progress = nullptr
)
static member IndexAsync :
paths : Paths *
cancellationToken : CancellationToken *
?progress : IProgress<Indicator>
(* Defaults:
let _progress = defaultArg progress null
*)
-> Task<IEnumerable<TopicData>>
Parameters
- paths
- Type: Amdl.Maml.ConverterPaths
Paths. - cancellationToken
- Type: System.ThreadingCancellationToken
Cancellation token. - progress (Optional)
- Type: SystemIProgressIndicator
Progress indicator.
Return Value
Type:
TaskIEnumerableTopicDataTopic data.
See Also