System.Runtime.Remoting.RemotingConfiguration.ConfigHandler.ReadClientWellKnown C# (CSharp) Method

ReadClientWellKnown() private method

private ReadClientWellKnown ( Mono.Xml.SmallXmlParser attrs ) : void
attrs Mono.Xml.SmallXmlParser
return void
		void ReadClientWellKnown (SmallXmlParser.IAttrList attrs)
		{
			string url = GetNotNull (attrs, "url");
			string type = GetNotNull (attrs, "type");
			string assm = ExtractAssembly (ref type);
			
			typeEntries.Add (new WellKnownClientTypeEntry (type, assm, url));
		}