System.Runtime.Remoting.RemotingConfigHandler.RemotingConfigInfo.CheckForRedirectedClientType C# (CSharp) Method

CheckForRedirectedClientType() private method

private CheckForRedirectedClientType ( String typeName, String asmName ) : bool
typeName String
asmName String
return bool
            private bool CheckForRedirectedClientType(String typeName, String asmName)
            {
                // if asmName has version information, remove it.
                int index = asmName.IndexOf(",");
                if (index != -1)
                    asmName = asmName.Substring(0, index);

                return 
                    (QueryRemoteActivate(typeName, asmName) != null) ||
                    (QueryConnect(typeName, asmName) != null);
            } // CheckForRedirectedClientType