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

OnEndParsing() public method

public OnEndParsing ( Mono.Xml.SmallXmlParser parser ) : void
parser Mono.Xml.SmallXmlParser
return void
		public void OnEndParsing (SmallXmlParser parser)
		{
			RemotingConfiguration.RegisterChannels (channelInstances, onlyDelayedChannels);
			if (appName != null) RemotingConfiguration.ApplicationName = appName;
			
			if (!onlyDelayedChannels)
				RemotingConfiguration.RegisterTypes (typeEntries);
		}
	}