CCNet.Build.Reconfigure.ProjectPage.ParseOwner C# (CSharp) Method

ParseOwner() private method

private ParseOwner ( string>.Dictionary properties ) : string
properties string>.Dictionary
return string
		private string ParseOwner(Dictionary<string, string> properties)
		{
			var owner = FindByKey(properties, key => key.Contains("owner"));

			if (owner == null)
				throw new InvalidOperationException("Cannot find project owner.");

			return NormalizeOwner(owner);
		}