Class EnumerateDataFeedParameters<TDataFeed>
- Namespace
- MonkeyLoader.Resonite.DataFeeds
- Assembly
- MonkeyLoader.Resonite.Integration.dll
Represents the event data for the Enumerate Data Feed Event.
public sealed class EnumerateDataFeedParameters<TDataFeed> : AsyncEvent where TDataFeed : IDataFeed
Type Parameters
TDataFeed
The type of the data feed.
- Inheritance
-
EnumerateDataFeedParameters<TDataFeed>
- Inherited Members
Remarks
This event is used by concrete MonkeyLoader.Resonite.DataFeeds.DataFeedInjector<TDataFeed> implementations to signal that the FrooxEngine.IDataFeed they're patching is being enumerated.
Properties
DataFeed
Gets the FrooxEngine.IDataFeed instance that the enumeration request was made on.
public TDataFeed DataFeed { get; }
Property Value
- TDataFeed
GroupKeys
Gets the group keys for this enumeration request. Can be empty.
public IReadOnlyList<string> GroupKeys { get; }
Property Value
HasGroupKeys
Gets whether this enumeration request has any GroupKeys.
public bool HasGroupKeys { get; }
Property Value
- bool
true
when there's at least one group key; otherwise,false
.
HasSearchPhrase
Gets whether this enumeration request has a search phrase.
public bool HasSearchPhrase { get; }
Property Value
- bool
true
if SearchPhrase is notnull
or empty; otherwise,false
.
HasViewData
Gets whether this enumeration request has custom view data.
public bool HasViewData { get; }
Property Value
IncludeOriginalResult
Gets or sets whether the original result should be inserted into the generated sequence.
public bool IncludeOriginalResult { get; set; }
Property Value
IsRootPath
Gets whether this enumeration request is for the root path.
public bool IsRootPath { get; }
Property Value
Path
Gets the path for this enumeration request.
public IReadOnlyList<string> Path { get; }
Property Value
SearchPhrase
Gets the search phrase for this enumeration request.
public string? SearchPhrase { get; }
Property Value
ViewData
Gets the custom view data for this enumeration request.
public object? ViewData { get; }