System.Runtime.Remoting.RemotingConfigHandler.RemotingConfigInfo.StartupWellKnownObject C# (CSharp) Méthode

StartupWellKnownObject() private méthode

private StartupWellKnownObject ( String URI ) : ServerIdentity
URI String
Résultat ServerIdentity
            internal ServerIdentity StartupWellKnownObject(String URI)
            {
                BCLDebug.Assert(null != URI, "null != URI");
                
                String uriLower = URI.ToLower(CultureInfo.InvariantCulture);
                ServerIdentity ident = null;

                WellKnownServiceTypeEntry entry = 
                    (WellKnownServiceTypeEntry)_wellKnownExportInfo[uriLower];
                if (entry != null)
                {
                    ident = StartupWellKnownObject(
                        entry.AssemblyName,
                        entry.TypeName,
                        entry.ObjectUri,
                        entry.Mode);

                }

                return ident;
            }

Same methods

RemotingConfigHandler.RemotingConfigInfo::StartupWellKnownObject ( String asmName, String svrTypeName, String URI, WellKnownObjectMode mode ) : ServerIdentity
RemotingConfigHandler.RemotingConfigInfo::StartupWellKnownObject ( String asmName, String svrTypeName, String URI, WellKnownObjectMode mode, bool fReplace ) : ServerIdentity