| SignatureGenerator Delegate |
Represents a method that calculates a hash value for a
String.
Namespace: StaMaAssembly: StaMa (in StaMa.dll) Version: 2.3.1.7
Syntax public delegate string SignatureGenerator(
string input
)
Public Delegate Function SignatureGenerator (
input As String
) As String
public delegate String^ SignatureGenerator(
String^ input
)
type SignatureGenerator =
delegate of
input : string -> string
Parameters
- input
- Type: SystemString
The String for which to calculate the hash value.
Return Value
Type:
String
A
String that contains the hash value for the
input value.
See Also