Inserts a Claim in the ClaimCollection at
a specified index.
Namespace: Microsoft.IdentityModel.Claims
Assembly: Microsoft.IdentityModel (in
microsoft.identitymodel.dll)
Usage
Visual Basic |
Dim instance As ClaimCollection
Dim index As Integer
Dim item As Claim
instance.Insert(index, item)
|
Syntax
Visual Basic |
Public Sub Insert ( _
index As Integer, _
item As Claim _
)
|
C# |
public void Insert (
int index,
Claim item
)
|
C++ |
public:
virtual void Insert (
int index,
Claim^ item
) sealed
|
J# |
public final void Insert (
int index,
Claim item
)
|
JScript |
public final function Insert (
index : int,
item : Claim
)
|
Parameters
- index
-
The zero-based index at which to insert the claim.
- item
-
The claim to insert.
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2008, Windows Vista, Not tested on Windows XP
See Also