IDatabaseProjectNode.CreateFileNodes Method
This adds files to the hierarchy in a batch.
Namespace: Microsoft.VisualStudio.Data.Schema.Package.Project
Assembly: Microsoft.VisualStudio.Data.Schema.Package (in Microsoft.VisualStudio.Data.Schema.Package.dll)
Syntax
'Declaration
Sub CreateFileNodes ( _
addRequests As IList(Of CreateFileNodesRequest), _
progress As CreateFileNodesProgress _
)
void CreateFileNodes(
IList<CreateFileNodesRequest> addRequests,
CreateFileNodesProgress progress
)
void CreateFileNodes(
IList<CreateFileNodesRequest^>^ addRequests,
CreateFileNodesProgress^ progress
)
abstract CreateFileNodes :
addRequests:IList<CreateFileNodesRequest> *
progress:CreateFileNodesProgress -> unit
function CreateFileNodes(
addRequests : IList<CreateFileNodesRequest>,
progress : CreateFileNodesProgress
)
Parameters
- addRequests
Type: System.Collections.Generic.IList<CreateFileNodesRequest>
A list of files-to-add requests. If a node is successfully created, the new node will be added to the AddFileRequest object.
- progress
Type: Microsoft.VisualStudio.Data.Schema.Package.Project.CreateFileNodesProgress
Provides progress to the caller. This argument can be null.
Remarks
The batch approach is useful when the project is under version control and the caller wants to batch all the source code control (SCC) requests.
.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.
See Also
Reference
IDatabaseProjectNode Interface
Microsoft.VisualStudio.Data.Schema.Package.Project Namespace