[]
Gets or sets the "city" field in the signature details dialog.
Use this property to retrieve the city metadata stored in this SignatureDetails instance before applying a digital signature.
public string City { get; set; }
Public Property City As String
SignatureDetails details = new SignatureDetails();
details.City = "Seattle";
string city = details.City;