namespace Microsoft.AspNetCore.NodeServices { /// /// Represents a way of creating and invoking code in a Node.js environment. /// public enum NodeHostingModel { /// /// An out-of-process Node.js instance where RPC calls are made via HTTP. /// Http, /// /// An out-of-process Node.js instance where RPC calls are made over binary sockets. /// Socket, } }