System.Action.Invoke(WebSystemWebHttpRuntimeConfigurator)

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

1 Examples 7

19 Source : WebSystemWebConfigurator.cs
with MIT License
from alethic

public WebSystemWebConfigurator HttpRuntime(Action<WebSystemWebHttpRuntimeConfigurator> configure)
        {
            return this.Configure("httpRuntime", e => configure?.Invoke(new WebSystemWebHttpRuntimeConfigurator(e)));
        }