You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DataExchange/CustomNodeConverter.cs
+11-10Lines changed: 11 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -21,17 +21,19 @@ public interface ICustomNodeConverter
21
21
/// <returns>True if the instance can handle the node, false if not.</returns>
22
22
boolCanHandleNode(BaseNodenode);
23
23
24
-
/// <summary>Creates a schema node from the xml element. This method gets only called if <see cref="CanHandleElement(XElement)"/> returned true.</summary>
25
-
/// <param name="element">The element to create the schema from.</param>
26
-
/// <param name="classes">The list of classes which correspond to the schema.</param>
24
+
/// <summary>Creates a node from the xml element. This method gets only called if <see cref="CanHandleElement(XElement)"/> returned true.</summary>
25
+
/// <param name="element">The element to create the node from.</param>
26
+
/// <param name="parent">The parent of the node.</param>
27
+
/// <param name="classes">The list of classes which correspond to the node.</param>
27
28
/// <param name="logger">The logger used to output messages.</param>
28
-
/// <returns>The schema node for the xml element.</returns>
/// <summary>Creates a xml element from the schema node. This method gets only called if <see cref="CanHandleSchema(SchemaCustomNode)"/> returned true.</summary>
32
-
/// <param name="node">The schema node to create the xml element from.</param>
33
+
/// <summary>Creates a xml element from the node. This method gets only called if <see cref="CanHandleNode(BaseNode node)"/> returned true.</summary>
34
+
/// <param name="node">The node to create the xml element from.</param>
33
35
/// <param name="logger">The logger used to output messages.</param>
34
-
/// <returns>The xml element for the schema node.</returns>
36
+
/// <returns>The xml element for the node.</returns>
0 commit comments