示例#1
0
 /// <summary>
 /// Adds the keys that must be ignored and not processed.
 /// </summary>
 /// <param name="ignoreKeys">The keys that must be ignored and not processed.</param>
 /// <returns>The metadata processor.</returns>
 public DefaultMetadataProcessor Ignore(IEnumerable <string> ignoreKeys)
 {
     IgnoreKeys.UnionWith(ignoreKeys);
     return(this);
 }
示例#2
0
 /// <summary>
 /// Adds the keys that must be ignored and not processed.
 /// </summary>
 /// <param name="ignoreKeys">The keys that must be ignored and not processed.</param>
 /// <returns>The metadata processor.</returns>
 public DefaultMetadataProcessor Ignore(params string[] ignoreKeys)
 {
     IgnoreKeys.UnionWith(ignoreKeys);
     return(this);
 }