Updates the properties of a workspace.
Namespace:  Microsoft.TeamFoundation.VersionControl.Client
Assembly:  Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
声明
Public Sub Update ( _
    newName As String, _
    newOwner As String, _
    newComment As String, _
    newMappings As WorkingFolder(), _
    fixMappingErrors As Boolean _
)
public void Update(
    string newName,
    string newOwner,
    string newComment,
    WorkingFolder[] newMappings,
    bool fixMappingErrors
)
public:
void Update(
    String^ newName, 
    String^ newOwner, 
    String^ newComment, 
    array<WorkingFolder^>^ newMappings, 
    bool fixMappingErrors
)
member Update : 
        newName:string * 
        newOwner:string * 
        newComment:string * 
        newMappings:WorkingFolder[] * 
        fixMappingErrors:bool -> unit 
public function Update(
    newName : String, 
    newOwner : String, 
    newComment : String, 
    newMappings : WorkingFolder[], 
    fixMappingErrors : boolean
)
Parameters
- newName
 Type: System.String
 The new name.
- newOwner
 Type: System.String
 The new owner.
- newComment
 Type: System.String
 The new comment.
- newMappings
 Type: array<Microsoft.TeamFoundation.VersionControl.Client.WorkingFolder[]
 The new mappings.
- fixMappingErrors
 Type: System.Boolean
 True to remove mapping errors that can be safely ignored. False to not remove mapping errors.
Remarks
The name, comment, and working folders may be changed. The repository is the one that is referenced by changedWorkspace (workspaces cannot be moved across repositories).
.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.