Search

Search(List<SearchOptions>)

Searches for signatures in a document by SearchOptions list.

public SearchResult Search(List<SearchOptions> searchOptionsList)
Parameter Type Description
searchOptionsList List`1 The search options collection.

Return Value

Returns instance of SearchResult with list of found Signatures.

Remarks

Learn more

See Also


Search<T>(SearchOptions)

Searches for signatures in a document by SearchOptions options.

public List<T> Search<T>(SearchOptions searchOptions)
    where T : BaseSignature
Parameter Type Description
searchOptions SearchOptions The search options.

Return Value

Returns the list of signatures found.

Remarks

Learn more

See Also


Search<T>(SignatureType)

Searches for exact type of signatures in the document by SignatureType value.

public List<T> Search<T>(SignatureType signatureType)
    where T : BaseSignature
Parameter Type Description
signatureType SignatureType The type of signatures to search.

Return Value

Returns the list of found signatures with exact type.

Remarks

Learn more

See Also


Searches for specified signature types in the document by SignatureType value.

public SearchResult Search(params SignatureType[] signatureTypes)
Parameter Type Description
signatureTypes SignatureType[] One or several types of signatures to find.

Return Value

Returns instance of SearchResult with list of found signatures.

Remarks

Learn more

See Also