IUserManagerOAuthIdentities Method
|
Retrieve the collection of OAuthIdentity objects
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<IOAuthIdentity> OAuthIdentities(
out int count,
int pageSize = -1,
int startIndex = -1
)
Function OAuthIdentities (
<OutAttribute> ByRef count As Integer,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of IOAuthIdentity)
IEnumerable<IOAuthIdentity^>^ OAuthIdentities(
[OutAttribute] int% count,
int pageSize = -1,
int startIndex = -1
)
abstract OAuthIdentities :
count : int byref *
?pageSize : int *
?startIndex : int
(* Defaults:
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<IOAuthIdentity> Parameters
- count Int32
- The total count of OAuth Identities
- pageSize Int32 (Optional)
- The number of items to return in this page
- startIndex Int32 (Optional)
- The index to start when fetching a page of OAuth Identities
Return Value
IEnumerableIOAuthIdentityCollection of
OAuth Identities
See Also