mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 18:19:40 +00:00
17 lines
641 B
C#
17 lines
641 B
C#
namespace Microsoft.AspNetCore.NodeServices.HostingModels
|
|
{
|
|
/// <summary>
|
|
/// Extension methods that help with populating a <see cref="NodeServicesOptions"/> object.
|
|
/// </summary>
|
|
public static class NodeServicesOptionsExtensions
|
|
{
|
|
/// <summary>
|
|
/// Configures the <see cref="INodeServices"/> service so that it will use out-of-process
|
|
/// Node.js instances and perform RPC calls over HTTP.
|
|
/// </summary>
|
|
public static void UseHttpHosting(this NodeServicesOptions options)
|
|
{
|
|
options.NodeInstanceFactory = () => new HttpNodeInstance(options);
|
|
}
|
|
}
|
|
} |