System.Action.Invoke(WeixinAuthOptions)

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

1 Examples 7

19 Source : TestServerBuilder.cs
with GNU General Public License v3.0
from myvas

public static WeixinAuthOptions CreateWeixinOpenOptions(Action<WeixinAuthOptions> update)
        {
            var options = CreateWeixinOpenOptions();
            update?.Invoke(options);
            return options;
        }