Opc.Ua.Configuration.PseudoComServer.GetServerHostClsid C# (CSharp) Method

GetServerHostClsid() public static method

Returns the CLSID of the host process to use for the specification.
public static GetServerHostClsid ( ComSpecification specification ) : System.Guid
specification ComSpecification
return System.Guid
        public static Guid GetServerHostClsid(ComSpecification specification)
        {
            if (specification == ComSpecification.AE)
            {
                return ConfigUtils.CLSID_UaComAeProxyServer;
            }

            else if (specification == ComSpecification.HDA)
            {
                return ConfigUtils.CLSID_UaComHdaProxyServer;
            }
                
            return ConfigUtils.CLSID_UaComDaProxyServer;
        }