ImageUtil.ImagesFolder.OnAddConflict C# (CSharp) Method

OnAddConflict() private method

private OnAddConflict ( string shortName, string fullName ) : bool
shortName string
fullName string
return bool
		private bool OnAddConflict(string shortName, string fullName)
		{
			var ea = new ImageAddConflictArgs(shortName, fullName);
			if (ImageAddConflict != null)
				ImageAddConflict(this, ea);
			return !ea.Cancel;
		}