Skip to main content
Nintex Community Menu Bar

K2Utilities Documentation

  • July 5, 2006
  • 4 replies
  • 18 views

Forum|alt.badge.img+1
Is there any documentation for the methods available in this namespace? I looked for a while and I cannot find any.

4 replies

Forum|alt.badge.img+11
  • Nintex Employee
  • July 6, 2006
Hi kbodie,

Sorry, no documentation is available for K2Utilities.

The K2Utilities assembly is for internal use only. It is undocumented and UNSUPPORTED!! This assembly may change (and in fact has already changed) from one K2.net version to the next without warning and without any consideration to backward-compatibility.


Regards,
Ockert

Forum|alt.badge.img+1
  • Author
  • July 7, 2006
Good to know. Thank you.

Is it safe to assume then that any assembly which is not in the help documentation is also unsupported?

Forum|alt.badge.img+11
  • Nintex Employee
  • July 7, 2006
Correct assumption.

Regards,
Ockert

Forum|alt.badge.img+1
  • Author
  • July 7, 2006
Any suggestions on how I can loop over the value in a XML node so that I can generate an email containing each of the nodes values (without referencing K2Utilities)? I was using this piece of code (thanks to this post http://forum.k2workflow.com/viewtopic.php?t=1380):

.Value, "my:myFields/my:group1/my:group2/my:toDate");
for (int i = 0; i < xmlNodeListFrom.Count; i++)
{
dateString += "From Date: " + xmlNodeListFrom.Item(i).InnerXml + " " + xmlNodeListTo.Item(i).InnerXml + System.Environment.NewLine;
}