UserOptions Class
The user_options configuration is used to specify additional settings for the User when making a request to retrieve linked accounts using Users.GetLinkedAccounts(). It allows you to customize the response by specifying the time window, maximum number of users, and service providers for which linked accounts should be retrieved.
Creates a new instance of ::UserOptions which is used to customize the option flow. It returns a handle to the newly created options object, which can be used to set various properties for the options.
void SetMaxUsers ( uint value )
This field specifies the maximum number of User that should be returned in the response.
It's an array of ServiceProvider objects that specifies the service providers for which linked accounts should be retrieved.
void ClearServiceProviders ( )
This method clears the ServiceProviders options associated with this instance, and the instance will be in its default state.
This field specifies the time window in seconds for which the linked accounts should be retrieved.
static static operator IntPtr This operator allows you to pass an instance of the ::UserOptions class to native C code as an IntPtr. The operator returns the handle of the options object, or IntPtr.Zero if the object is null.