| IGridFSBucketTFileIdRename Method  | 
 
            Renames a GridFS file.
            
 
    Namespace: 
   MongoDB.Driver.GridFS
    Assembly:
   MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntaxvoid Rename(
	TFileId id,
	string newFilename,
	CancellationToken cancellationToken = null
)
Sub Rename ( 
	id As TFileId,
	newFilename As String,
	Optional cancellationToken As CancellationToken = Nothing
)
abstract Rename : 
        id : 'TFileId * 
        newFilename : string * 
        ?cancellationToken : CancellationToken 
(* Defaults:
        let _cancellationToken = defaultArg cancellationToken null
*)
-> unit 
Parameters
- id
- Type: TFileId
 The file id.
- newFilename
- Type: SystemString
 The new filename.
- cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
 The cancellation token.
 See Also
See Also