trannamtrung1st / elFinder.Net.Core

An elFinder backend connector with less magic code and more compatibility. This enables .NET Standard 2.0 projects to easily integrate elFinder functionalities.
Apache License 2.0
12 stars 8 forks source link

Issues #28: #29

Closed trannamtrung1st closed 2 years ago

trannamtrung1st commented 2 years ago

WARNING: the API used for registering event handlers has been changed, please see the corresponding pull request and release for more information.

From:

driver.[Event] += (...) => 
{
    ...
};

To

driver.[Event].Add((...) => 
{
    ...
});