コード例 #1
0
        private bool IsMessageAttributeMatch(string message, AttributeType attribute)
        {
            switch (attribute)
            {
            case AttributeType.None: return(false);

            default: return(message.Equals(attribute.ToLocalizedString()));
            }
        }