Dropbox .NET SDK

Class RiscSecurityEventDetails

RISC security event received from external provider.

Inheritance
object
RiscSecurityEventDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class RiscSecurityEventDetails

Constructors

View Source

RiscSecurityEventDetails(string, string, string)

Initializes a new instance of the RiscSecurityEventDetails class.

Declaration
public RiscSecurityEventDetails(string eventType, string reason, string issuer)
Parameters
Type Name Description
string eventType

RISC event type (e.g., account-disabled, token-revoked).

string reason

Reason for the RISC event.

string issuer

Identity provider issuer (e.g., https://accounts.google.com).

Properties

View Source

EventType

RISC event type (e.g., account-disabled, token-revoked).

Declaration
public string EventType { get; protected set; }
Property Value
Type Description
string
View Source

Issuer

Identity provider issuer (e.g., https://accounts.google.com).

Declaration
public string Issuer { get; protected set; }
Property Value
Type Description
string
View Source

Reason

Reason for the RISC event.

Declaration
public string Reason { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK