FileAs property

String? FileAs
Gets or set the name under which this contact is filed as. FileAs can be manually set or can be automatically calculated based on the value of the FileAsMapping property.

Implementation

String? get FileAs => this.PropertyBag[ContactSchema.FileAs] as String?;
void FileAs=(String? value)

Implementation

set FileAs(String? value) => this.PropertyBag[ContactSchema.FileAs] = value;