CCNet.SourceNotifier.Program.ReportToMaster C# (CSharp) Method

ReportToMaster() private method

Sends the report on all old pending changes to the master.
private ReportToMaster ( string to ) : void
to string
return void
		private void ReportToMaster(string to)
		{
			m_mailGateway.SendMessage(
				new MailAddress(to),
				Resources.ReportToMasterMailSubject,
				TemplateEngine.GetProcessedString("MasterReport.xslt", XsltArguments, OldCheckoutsAsXml));
		}