Allow enumeration of the key rings associated with the passed in userId.

Namespace: Org.BouncyCastle.Bcpg.OpenPgp
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public IEnumerable GetKeyRings(
	string userId,
	bool matchPartial
)
Visual Basic
Public Function GetKeyRings ( _
	userId As String, _
	matchPartial As Boolean _
) As IEnumerable
Visual C++
public:
IEnumerable^ GetKeyRings(
	String^ userId, 
	bool matchPartial
)

Parameters

userId
Type: System..::..String
The user ID to be matched.
matchPartial
Type: System..::..Boolean
If true, userId need only be a substring of an actual ID string to match.

Return Value

An IEnumerable of key rings which matched (possibly none).

See Also