SIL.FieldWorks.XWorks.FwXWindow.GetMessageTargets C# (CSharp) Method

GetMessageTargets() public method

return an array of all of the objects which should 1) be queried when looking for someone to deliver a message to 2) be potential recipients of a broadcast
public GetMessageTargets ( ) : IxCoreColleague[]
return IxCoreColleague[]
		public override IxCoreColleague[] GetMessageTargets()
		{
			CheckDisposed();
			if(m_app is IxCoreColleague)
				return new IxCoreColleague[] { this, m_app as IxCoreColleague };
			else
				return new IxCoreColleague[]{this};
		}
FwXWindow