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;
		}