1. private bool SendBulkOrders(List<Order> orders) {}
DataCollector for method SendBulkOrders collecting Parameter 0.
Getter chain: [0].BucketId
(If you have a class which has a property type of List, then you would need to do something like "MyPrope...
For .net property if i just use ParamIndex_0.ClOrdID then value capture in Business transaction snapshot is showing just "[]" .. i sse data is collected but value [] does not make sense. Do i have to call toString()
Another scenarios: How to achive it.
1) private bool SendBulkOrders(List<Order> orders) {}
how to collect data from parameter which is collection of data. In above example i want to cllect orders[0].BucketId
2) private bool SendObject(Object se...
Public Class Order {
public string ClOrdID
{ get; set; }
}
public Order SendOrder(Order ord) {}
What will be getter chain for collecting value of ClOrdID. Remember its .net property and there is no getClord...