Is there any documentation for the methods available in this namespace? I looked for a while and I cannot find any.
Page 1 / 1
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
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
Good to know. Thank you.
Is it safe to assume then that any assembly which is not in the help documentation is also unsupported?
Is it safe to assume then that any assembly which is not in the help documentation is also unsupported?
Correct assumption.
Regards,
Ockert
Regards,
Ockert
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;
}
.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;
}
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.