Create a new node and set start and finish date
Namespace:  Microsoft.TeamFoundation.Integration.Server
Assembly:  Microsoft.TeamFoundation.Server.Core (in Microsoft.TeamFoundation.Server.Core.dll)
Syntax
'Declaration
<WebMethodAttribute> _
Public Function CreateNodeWithDates ( _
    nodeName As String, _
    parentNodeUri As String, _
    startDate As Nullable(Of DateTime), _
    finishDate As Nullable(Of DateTime) _
) As String
[WebMethodAttribute]
public string CreateNodeWithDates(
    string nodeName,
    string parentNodeUri,
    Nullable<DateTime> startDate,
    Nullable<DateTime> finishDate
)
[WebMethodAttribute]
public:
String^ CreateNodeWithDates(
    String^ nodeName, 
    String^ parentNodeUri, 
    Nullable<DateTime> startDate, 
    Nullable<DateTime> finishDate
)
[<WebMethodAttribute>]
member CreateNodeWithDates : 
        nodeName:string * 
        parentNodeUri:string * 
        startDate:Nullable<DateTime> * 
        finishDate:Nullable<DateTime> -> string
public function CreateNodeWithDates(
    nodeName : String, 
    parentNodeUri : String, 
    startDate : Nullable<DateTime>, 
    finishDate : Nullable<DateTime>
) : String
Parameters
- nodeName 
 Type: System.String- name of the node 
- parentNodeUri 
 Type: System.String- parent uri 
- startDate 
 Type: System.Nullable<DateTime>- start date 
- finishDate
 Type: System.Nullable<DateTime>
Return Value
Type: System.String
uri of the created node
.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.