TargetApplicationClaims Constructor
Initializes a new instance of the TargetApplicationClaims class using the specified claim collections.
Namespace: Microsoft.Office.SecureStoreService.Server
Assembly: Microsoft.Office.SecureStoreService (in Microsoft.Office.SecureStoreService.dll)
Syntax
'Declaration
Public Sub New ( _
administratorClaims As IList(Of SecureStoreServiceClaim), _
groupClaims As IList(Of SecureStoreServiceClaim), _
ticketRedeemerClaims As IList(Of SecureStoreServiceClaim) _
)
'Usage
Dim administratorClaims As IList(Of SecureStoreServiceClaim)
Dim groupClaims As IList(Of SecureStoreServiceClaim)
Dim ticketRedeemerClaims As IList(Of SecureStoreServiceClaim)
Dim instance As New TargetApplicationClaims(administratorClaims, _
groupClaims, ticketRedeemerClaims)
public TargetApplicationClaims(
IList<SecureStoreServiceClaim> administratorClaims,
IList<SecureStoreServiceClaim> groupClaims,
IList<SecureStoreServiceClaim> ticketRedeemerClaims
)
Parameters
administratorClaims
Type: System.Collections.Generic.IList<SecureStoreServiceClaim>The claims of the administrators of the target application.
groupClaims
Type: System.Collections.Generic.IList<SecureStoreServiceClaim>The claims of the members of a group target application. This parameter must be set to null for an individual target application.
ticketRedeemerClaims
Type: System.Collections.Generic.IList<SecureStoreServiceClaim>The claims made by the ticket redeemers of the target application. This parameter must be set to null if the target application does not support ticketing.