0
votes

How can I Publish void Prism event using Event Aggregator?

There is no option like this.

public class AllDataLoaded : PubSubEvent<void>
{
}
1

1 Answers

1
votes

I assume you are trying to publish an event with no parameter. In that case just use

public class DailyQcAllDataLoaded : PubSubEvent
{

}