System.Action.Invoke(WebSystemWebServerGlobalModuleConfigurator)

Here are the examples of the csharp api System.Action.Invoke(WebSystemWebServerGlobalModuleConfigurator) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : WebSystemWebServerConfiguratorExtensions.cs
with MIT License
from alethic

public static WebSystemWebServerConfigurator GlobalModules(this WebSystemWebServerConfigurator self, Action<WebSystemWebServerGlobalModuleConfigurator> configurator = null)
        {
            return self.Configure("globalModules", e => configurator?.Invoke(new WebSystemWebServerGlobalModuleConfigurator(e)));
        }