 | JsonRpcOptionsServiceFactory Property |
[This is preliminary documentation and is subject to change.]
The factory that creates the JSON RPC service instances to handle the requests.
Namespace:
JsonRpc.AspNetCore
Assembly:
JsonRpc.AspNetCore (in JsonRpc.AspNetCore.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntaxpublic IServiceFactory ServiceFactory { get; set; }
Public Property ServiceFactory As IServiceFactory
Get
Set
Dim instance As JsonRpcOptions
Dim value As IServiceFactory
value = instance.ServiceFactory
instance.ServiceFactory = value
public:
property IServiceFactory^ ServiceFactory {
IServiceFactory^ get ();
void set (IServiceFactory^ value);
}
member ServiceFactory : IServiceFactory with get, set
Property Value
Type:
IServiceFactory
Remarks
The default value uses
Default.
Set this property to
null is equivalent to setting it to
[!:DefaultServiceFactory.Default].
See Also