C# 클래스 Gammtek.Conduit.Text.StringMatching.CombinedStringMatcher

Combines multiple string matchers. Input string is matched if matched by any of the contained matchers.
상속: IStringMatcher
파일 보기 프로젝트 열기: ME3Explorer/ME3Explorer

공개 메소드들

메소드 설명
Add ( IStringMatcher matcher ) : void

Adds new matcher to the list of contained matchers.

AddRange ( IStringMatcher matchers ) : void

Adds multiple matchers to the set of contained matchers.

CombinedStringMatcher ( ) : System

Default constructor.

CombinedStringMatcher ( IStringMatcher matchers ) : System

Constructor which initializes list of contained string matchers.

IsMatch ( string value ) : bool

Tests whether specified string can be matched using any of the contained matchers.

메소드 상세

Add() 공개 메소드

Adds new matcher to the list of contained matchers.
is null.
public Add ( IStringMatcher matcher ) : void
matcher IStringMatcher New matcher to add to the list.
리턴 void

AddRange() 공개 메소드

Adds multiple matchers to the set of contained matchers.
is null or contains null reference.
public AddRange ( IStringMatcher matchers ) : void
matchers IStringMatcher Array of matchers that should be added.
리턴 void

CombinedStringMatcher() 공개 메소드

Default constructor.
public CombinedStringMatcher ( ) : System
리턴 System

CombinedStringMatcher() 공개 메소드

Constructor which initializes list of contained string matchers.
is null or contains null reference.
public CombinedStringMatcher ( IStringMatcher matchers ) : System
matchers IStringMatcher Array of matchers that should be added to this matcher.
리턴 System

IsMatch() 공개 메소드

Tests whether specified string can be matched using any of the contained matchers.
public IsMatch ( string value ) : bool
value string String which is tested against contained matchers.
리턴 bool