private bool IsMessageAttributeMatch(string message, AttributeType attribute) { switch (attribute) { case AttributeType.None: return(false); default: return(message.Equals(attribute.ToLocalizedString())); } }