Table of Contents

Interface ISharePointIdentity

Namespace
PnP.Core.Model.Security
Assembly
PnP.Core.dll

This resource extends from the identity resource to provide the ability to expose SharePoint-specific information; for example, loginName or SharePoint IDs.

public interface ISharePointIdentity

Properties

DisplayName

The identity's display name. Note that this might not always be available or up to date. For example, if a user changes their display name, the API may show the new value in a future response, but the items associated with the user won't show up as having changed when using delta.

string DisplayName { get; }

Property Value

string

Email

The email of the SharePoint identity.

string Email { get; }

Property Value

string

Id

Unique identifier for the identity. It can be either an Azure Active Directory ID or a SharePoint ID.

string Id { get; }

Property Value

string

LoginName

The sign in name of the SharePoint identity.

string LoginName { get; }

Property Value

string