Hi Mervin,
Apologies for the delay. I will just try and explain it with sample cade.
Assume you have code like this in your solution
Namespace
Namespace SPSolution {
Class SPClass {
......
.....
Public void AddItem(SPList list, CustomObject item) {
.......
.......
}
}
}
You can create Info Point like this
Class: SPSolution.SPClass
Method : AddItem
Custom Metric Definition
Collect Data from Method Param @index 0
Getter Chain: this.Items.Count
SPList has Count property which we can use to get the current count.
Thanks,
Raunak
... View more