Concat<IModule>(IModule) |
IEnumerable<T> |
|
ForEachDocument() |
ForEachDocument |
|
GetNext<IModule>(IModule, IEqualityComparer<IModule>) |
T |
|
GetNext<IModule>(IModule) |
T |
|
GetPrevious<IModule>(IModule, IEqualityComparer<IModule>) |
T |
|
GetPrevious<IModule>(IModule) |
T |
|
GroupByMany<IModule, TKey, TElement>(Func<IModule, IEnumerable<TKey>>, Func<IModule, TElement>, IEqualityComparer<TKey>) |
IEnumerable<IGrouping<TKey, TElement>> |
Groups the elements of a sequence according to a specified key selector function
that returns a sequence of keys.
The keys are compared by using a comparer and each group's elements
are projected by using a specified function.
|
GroupByMany<IModule, TKey, TElement>(Func<IModule, IEnumerable<TKey>>, Func<IModule, TElement>) |
IEnumerable<IGrouping<TKey, TElement>> |
Groups the elements of a sequence according to a specified key selector function
that returns a sequence of keys
and projects the elements for each group by using a specified function.
|
GroupByMany<IModule, TKey>(Func<IModule, IEnumerable<TKey>>, IEqualityComparer<TKey>) |
IEnumerable<IGrouping<TKey, TSource>> |
Groups the elements of a sequence according to a specified key selector function
that returns a sequence of keys
and compares the keys by using a specified comparer.
|
GroupByMany<IModule, TKey>(Func<IModule, IEnumerable<TKey>>) |
IEnumerable<IGrouping<TKey, TSource>> |
Groups the elements of a sequence according to a specified key selector function
that returns a sequence of keys.
|
GroupByManyToMany<IModule, TKey, TElement>(Func<IModule, IEnumerable<TKey>>, Func<IModule, IEnumerable<TElement>>, IEqualityComparer<TKey>) |
IEnumerable<IGrouping<TKey, TElement>> |
Groups the elements of a sequence according to a specified key selector function
that returns a sequence of keys.
The keys are compared by using a comparer and each group's elements
are projected by using a specified function
that returns a sequence of elements.
|
GroupByManyToMany<IModule, TKey, TElement>(Func<IModule, IEnumerable<TKey>>, Func<IModule, IEnumerable<TElement>>) |
IEnumerable<IGrouping<TKey, TElement>> |
Groups the elements of a sequence according to a specified key selector function
that returns a sequence of keys
and projects the elements for each group by using a specified function
that returns a sequence of elements.
|
ParallelForEachAsync<IModule>(Func<IModule, Task>, CancellationToken) |
Task |
|
ParallelSelectAsync<IModule, TResult>(Func<IModule, Task<TResult>>, CancellationToken) |
Task<IEnumerable<TResult>> |
Invokes an async selector in parallel.
|
ParallelSelectManyAsync<IModule, TResult>(Func<IModule, Task<IEnumerable<TResult>>>, CancellationToken) |
Task<IEnumerable<TResult>> |
Invokes an async selector that returns multiple results in parallel.
|
ParallelWhereAsync<IModule>(Func<IModule, Task<bool>>, CancellationToken) |
Task<IEnumerable<TSource>> |
|
StartsWith<IModule>(IEnumerable<IModule>, IEqualityComparer<IModule>) |
bool |
Determines whether the items starts with the specified values.
|
StartsWith<IModule>(IEnumerable<IModule>) |
bool |
Determines whether the items starts with the specified values.
|
ThrowIfNull<AddContentToMetadata>(string) |
T |
|
ToDocument<AddContentToMetadata>(IContentProvider) |
IDocument |
|
ToDocument<AddContentToMetadata>(IEnumerable<KeyValuePair<string, object>>, IContentProvider) |
IDocument |
|
ToDocument<AddContentToMetadata>(NormalizedPath, IContentProvider) |
IDocument |
|
ToDocument<AddContentToMetadata>(NormalizedPath, IEnumerable<KeyValuePair<string, object>>, IContentProvider) |
IDocument |
|
ToDocument<AddContentToMetadata>(NormalizedPath, NormalizedPath, IContentProvider) |
IDocument |
|
ToDocument<AddContentToMetadata>(NormalizedPath, NormalizedPath, IEnumerable<KeyValuePair<string, object>>, IContentProvider) |
IDocument |
|
ToDocuments<IModule>(Func<IModule, IContentProvider>) |
IEnumerable<IDocument> |
|
ToDocuments<IModule>(Func<IModule, IEnumerable<KeyValuePair<string, object>>>, Func<IModule, IContentProvider>) |
IEnumerable<IDocument> |
|
ToDocuments<IModule>(Func<IModule, NormalizedPath>, Func<IModule, IContentProvider>) |
IEnumerable<IDocument> |
|
ToDocuments<IModule>(Func<IModule, NormalizedPath>, Func<IModule, IEnumerable<KeyValuePair<string, object>>>, Func<IModule, IContentProvider>) |
IEnumerable<IDocument> |
|
ToDocuments<IModule>(Func<IModule, NormalizedPath>, Func<IModule, NormalizedPath>, Func<IModule, IContentProvider>) |
IEnumerable<IDocument> |
|
ToDocuments<IModule>(Func<IModule, NormalizedPath>, Func<IModule, NormalizedPath>, Func<IModule, IEnumerable<KeyValuePair<string, object>>>, Func<IModule, IContentProvider>) |
IEnumerable<IDocument> |
|
ToLookupMany<IModule, TKey, TElement>(Func<IModule, IEnumerable<TKey>>, Func<IModule, TElement>, IEqualityComparer<TKey>) |
ILookup<TKey, TElement> |
Creates a lookup from a sequence according to a specified key selector function
that returns a sequence of keys.
The keys are compared by using a comparer and each group's elements
are projected by using a specified function.
|
ToLookupMany<IModule, TKey, TElement>(Func<IModule, IEnumerable<TKey>>, Func<IModule, TElement>) |
ILookup<TKey, TElement> |
Creates a lookup from a sequence according to a specified key selector function
that returns a sequence of keys
and projects the elements for each group by using a specified function.
|
ToLookupMany<IModule, TKey>(Func<IModule, IEnumerable<TKey>>, IEqualityComparer<TKey>) |
ILookup<TKey, TSource> |
Creates a lookup from a sequence according to a specified key selector function
that returns a sequence of keys
and compares the keys by using a specified comparer.
|
ToLookupMany<IModule, TKey>(Func<IModule, IEnumerable<TKey>>) |
ILookup<TKey, TSource> |
Creates a lookup from a sequence according to a specified key selector function
that returns a sequence of keys.
|
ToLookupManyToMany<IModule, TKey, TElement>(Func<IModule, IEnumerable<TKey>>, Func<IModule, IEnumerable<TElement>>, IEqualityComparer<TKey>) |
ILookup<TKey, TElement> |
Creates a lookup from a sequence according to a specified key selector function
that returns a sequence of keys.
The keys are compared by using a comparer and each group's elements
are projected by using a specified function
that returns a sequence of elements.
|
ToLookupManyToMany<IModule, TKey, TElement>(Func<IModule, IEnumerable<TKey>>, Func<IModule, IEnumerable<TElement>>) |
ILookup<TKey, TElement> |
Creates a lookup from a sequence according to a specified key selector function
that returns a sequence of keys
and projects the elements for each group by using a specified function
that returns a sequence of elements.
|
ToStringTable<IModule>(string[], Func<IModule, object>[]) |
string |
|
WithChildren<AddContentToMetadata>(IEnumerable<IModule>) |
TModule |
|
WithChildren<AddContentToMetadata>(IModule[]) |
TModule |
|