internal ServerWellKnownEntry AddServerWellKnownEntry(string typeName, string assemName, ArrayList contextAttributes, string objURI, WellKnownObjectMode objMode)
 {
     this.TryToLoadTypeIfApplicable(typeName, assemName);
     ServerWellKnownEntry entry = new ServerWellKnownEntry(typeName, assemName, contextAttributes, objURI, objMode);
     this.ServerWellKnownEntries.Add(entry);
     return entry;
 }
Exemple #2
0
        internal ServerWellKnownEntry AddServerWellKnownEntry(string typeName, string assemName, ArrayList contextAttributes, string objURI, WellKnownObjectMode objMode)
        {
            this.TryToLoadTypeIfApplicable(typeName, assemName);
            ServerWellKnownEntry entry = new ServerWellKnownEntry(typeName, assemName, contextAttributes, objURI, objMode);

            this.ServerWellKnownEntries.Add(entry);
            return(entry);
        }
 internal ServerWellKnownEntry AddServerWellKnownEntry(String typeName, String assemName,
     ArrayList contextAttributes, String objURI, WellKnownObjectMode objMode)
 {
     TryToLoadTypeIfApplicable(typeName, assemName);
     ServerWellKnownEntry swke = new ServerWellKnownEntry(typeName, assemName,
         contextAttributes, objURI, objMode);
     ServerWellKnownEntries.Add(swke);
     return swke;
 }