System.Configuration.Configuration.GetLocationSubPath C# (CSharp) Метод

GetLocationSubPath() приватный Метод

private GetLocationSubPath ( ) : string
Результат string
		internal string GetLocationSubPath ()
		{
			Configuration confg = parent;
			string path = null;
			while (confg != null) {
				path = confg.locationSubPath;
				if (!String.IsNullOrEmpty (path))
					return path;
				confg = confg.parent;
			}
			return path;
		}