[]
Gets the "country name" field in the signature details dialog.
Use this property to read the country name stored in the signature metadata returned by Details.
string CountryName { get; }
ReadOnly Property CountryName As String
workbook.Open(GetSignedWorkbookStream());
ISignature signature = workbook.Signatures[0];
IReadOnlySignatureDetails details = signature.Details;
string countryName = details.CountryName;