Ejemplo n.º 1
0
 public void InformMeAbout(MatcherAction matcherAction, string keyPattern)
 {
     // Not used during tests
 }
Ejemplo n.º 2
0
 public void InformMeAboutPrefix(MatcherAction matcherAction, string treeName, string prefix)
 {
     // Not used during tests
 }
Ejemplo n.º 3
0
 public override void InformMeAboutPrefix(MatcherAction matcherAction, string treeName, string prefix)
 {
     this.InformMeAbout(matcherAction, treeName + "{\"" + UserAgentAnalyzerDirect.FirstCharactersForPrefixHash(prefix, UserAgentAnalyzerDirect.MAX_PREFIX_HASH_MATCH) + "\"");
 }
Ejemplo n.º 4
0
 public override void InformMeAbout(MatcherAction matcherAction, string keyPattern)
 {
     this.receivedValues.Add(keyPattern);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Not implemented.
 /// </summary>
 /// <param name="matcherAction">The <see cref="MatcherAction"/>.</param>
 /// <param name="treeName">name of the tree.</param>
 /// <param name="prefix">The prefix.</param>
 public void InformMeAboutPrefix(MatcherAction matcherAction, string treeName, string prefix)
 {
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Not implemented.
 /// </summary>
 /// <param name="matcherAction">The <see cref="MatcherAction"/>.</param>
 /// <param name="keyPattern">The key pattern.</param>
 public void InformMeAbout(MatcherAction matcherAction, string keyPattern)
 {
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InitErrorListener{T}"/> class.
 /// </summary>
 /// <param name="matcherAction">The matcherAction<see cref="MatcherAction"/>.</param>
 public InitErrorListener(MatcherAction matcherAction)
     : base()
 {
     this.MatcherAction = matcherAction;
 }