Swapper.NET Logo

Source Code Interfaces ~ IConfigurationManager.cs


using System;

namespace RevolutionaryStuff.P2P.Basics
{
	public interface IConfigurationManager : ISchemaResolver
	{
		string PrimaryNamespace {get;}
		string GetConfigData();
		void SetConfigData(string xml);
	}
}