CTXMAMUserAttributes.h

Includes:

Introduction

Include the CTXMAMUserAttributes.h header in your source files to help in getting different user attributes from CEM in your project.

Properties

The properties for the CTXMAMUserAttributes.h header are the following:

  • ldapUserPrincipalName

  • ldapSAMAccountName

  • ldapDisplayName

  • ldapMail

These properties require client property configuration on the Citrix Endpoint Management server . You must configure the SEND_LDAP_ATTRIBUTES as described in the Citrix Endpoint Management documentation.

ldapUserPrincipalName

A property that holds the LDAP User Principal Name. Example: user1@example

@property (nonatomic,readonly,strong) NSString * _Nullable ldapUserPrincipalName;
<!--NeedCopy-->

ldapSAMAccountName

A property that holds the LDAP SAM Account Name. Example: user1

@property (nonatomic,readonly,strong) NSString * _Nullable ldapSAMAccountName;
<!--NeedCopy-->

ldapDisplayName

A property that holds the LDAP Display Name. Example: User One

@property (nonatomic,readonly,strong) NSString * _Nullable ldapDisplayName;
<!--NeedCopy-->

ldapMail

A property that holds the LDAP Email. Example: user1@example.com

@property (nonatomic,readonly,strong) NSString * _Nullable ldapMail;
<!--NeedCopy-->

© Citrix Systems, Inc.

CTXMAMUserAttributes.h