Click or drag to resize

MapFieldSigGenStandardEncryptedSignature Method

Generate a signature for the specified field and encrypt it, typically for use in a URL. The signature is encrypted using Encrypt(String, String) with the class's standard, cxt-specific password then escaped for use as a URI component in a URL. See FromStandardEncryptedSignature(IAppContext, String) to extract the original MapFieldSig from the resulting signature.

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public string GenStandardEncryptedSignature(
	IAppContext cxt,
	IField fld
)

Parameters

cxt
Type: NetQuarryIAppContext
The application.
fld
Type: NetQuarry.DataIField
The field for which to generate a signature.

Return Value

Type: String
The encrypted and URI-escaped signature string.
See Also