/// <summary> /// Exact service name - must be reflect the bitness of the ServiceHub process. /// </summary> public RemoteServiceName(string customServiceName) { WellKnownService = WellKnownServiceHubService.None; CustomServiceName = customServiceName; }
public RemoteServiceName(WellKnownServiceHubService wellKnownService) { WellKnownService = wellKnownService; CustomServiceName = null; }