hello,
I am working on developing a custom data reviewer check by implementing the Execute method of IPLTSCNTWorkspaceValExtension and IPLTSCNTSelectionSetValExtension interfaces, and unfortunately i only find samples for implementing the IPLTSCNTSelectionSetValExtension interface on which we can validate the check against single Feature Class or Table in the workspace and in my case i want to validate my custom check against all tables in workspace so i guess i should implement IPLTSCNTWorkspaceValExtension instead of IPLTSCNTSelectionSetValExtension but i didn't find any sample code of how to implement and use the IPLTSCNTWorkspaceValExtension interface and implement the following execute method:
public IPLTSErrorCollection Execute(IWorkspace workSpace, string arguments)
{
//TODO: code goes here to validate the selected features or records from different feature classes or tables agaisn a specific check
}
any help in that issue will be great.
Thanks in advance