protected string ConvertClientPathToDebugger()

in src/csharp/DebugSession.cs [460:477]


		protected string ConvertClientPathToDebugger(string clientPath)
		{
			if (clientPath == null) {
				return null;
			}

			if (_clientPathsAreURI) {
				if (Uri.IsWellFormedUriString(clientPath, UriKind.Absolute)) {
					Uri uri = new Uri(clientPath);
					return uri.LocalPath;
				}
				Program.Log("path not well formed: '{0}'", clientPath);
				return null;
			}
			else {
				return clientPath;
			}
		}