Mongoose - 9.01
CSI - 9.00.30
Is there a better way to get the RowPointer from a UpdateCollectionResponseData? It seems like there should be a "GetRowPointer" method but I am currently having to split the ItemID several times to get the value I need. Below is a simplified version of the C# I am using. Please correct my wrongness.
UpdateCollectionResponseData APResponse = Context.Commands.UpdateCollection(APCollection);
foreach (string itemID in APResponse.Items[0].ItemID.Split(' '))
{
string[] k = itemID.Split('=');
if (k[0].Trim() == "apt.ID")
invItem.APRowPointer = k[1].TrimStart('[').TrimEnd(']');
}