DirectoryId property

String? DirectoryId
Gets the User SMIME certificate from the directory Gets the MSExchange certificate from the directory Gets the DirectoryID as Guid or DN string

Implementation

// Uint8List[] UserSMIMECertificate
//        {
//            get
//            {
//                ByteArrayArray array = (ByteArrayArray)this.PropertyBag[ContactSchema.UserSMIMECertificate];
//                return array.Content;
//            }
//        }

/// <summary>
/// Gets the MSExchange certificate from the directory
/// </summary>
// Uint8List[] get MSExchangeCertificate
//
//            {
//                ByteArrayArray array = (ByteArrayArray)this.PropertyBag[ContactSchema.MSExchangeCertificate];
//                return array.Content;
//            }

/// <summary>
/// Gets the DirectoryID as Guid or DN string
/// </summary>
String? get DirectoryId =>
    this.PropertyBag[ContactSchema.DirectoryId] as String?;