Click or drag to resize
MimeKit

SqlCertificateDatabaseCreateParameterName Method

Create a parameter name for use in SQL database queries.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.17.0
Syntax
C#
protected virtual string CreateParameterName(
	string variableName
)

Parameters

variableName  String
The name of the variable.

Return Value

String
The parameter name to be used in queries and ParameterName.
Remarks

Creates a parameter name for use in SQL database queries.

The variableName string is typically the name of the column being matched, but may also be other variable names such as "NOW", "DATETIME", or "FLAGS".

By default, this method creates a parameter name by prefixing variableName with an '@' character.

See Also