Checks whether the current user has authority to write the specified permissions.
Namespace:  Microsoft.TeamFoundation.Framework.Client
Assembly:  Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
Public MustOverride Function HasWritePermission ( _
    token As String, _
    permissionsToChange As IEnumerable(Of Integer) _
) As Collection(Of Boolean)
public abstract Collection<bool> HasWritePermission(
    string token,
    IEnumerable<int> permissionsToChange
)
public:
virtual Collection<bool>^ HasWritePermission(
    String^ token, 
    IEnumerable<int>^ permissionsToChange
) abstract
abstract HasWritePermission : 
        token:string * 
        permissionsToChange:IEnumerable<int> -> Collection<bool> 
public abstract function HasWritePermission(
    token : String, 
    permissionsToChange : IEnumerable<int>
) : Collection<boolean>
Parameters
- token 
 Type: System.String- The token for which to check write permissions. 
- permissionsToChange 
 Type: System.Collections.Generic.IEnumerable<Int32>- The permission bits that the authorized user may want to change. 
Return Value
Type: System.Collections.ObjectModel.Collection<Boolean>
A collection of results for the respective checks. True if the current user has the authority to change the specified permissions bits; otherwise, false.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.