Show / Hide Table of Contents

Class Identity

The type Identity.

Inheritance
System.Object
Identity
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
[JsonConverter(typeof(DerivedTypeConverter))]
public class Identity

Properties

View Source

AdditionalData

Gets or sets additional data.

Declaration
[JsonExtensionData(ReadData = true)]
public IDictionary<string, object> AdditionalData { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>
View Source

DisplayName

Gets or sets displayName.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "displayName", Required = Required.Default)]
public string DisplayName { get; set; }
Property Value
Type Description
System.String
View Source

Id

Gets or sets id.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "id", Required = Required.Default)]
public string Id { get; set; }
Property Value
Type Description
System.String
View Source

IdentityProvider

Gets or sets identityProvider.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "identityProvider", Required = Required.Default)]
public IdentityProvider? IdentityProvider { get; set; }
Property Value
Type Description
System.Nullable<IdentityProvider>
View Source

TenantId

Gets or sets tenantId.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "tenantId", Required = Required.Default)]
public string TenantId { get; set; }
Property Value
Type Description
System.String
  • View Source
Back to top Generated by DocFX