ICanHandleUsedIdentifiers Interface
By implementing this interface, custom data providers can receive the identifiers actually used in a print project e.g. in order to optimize queries.
public interface ICanHandleUsedIdentifiers
public interface class ICanHandleUsedIdentifiers
'Declaration
Public Interface ICanHandleUsedIdentifiers
#region ICanHandleUsedIdentifiers Members
private ReadOnlyCollection<string> _usedIdentifiers;
internal ReadOnlyCollection<string> UsedIdentifiers
{
get
{
return _usedIdentifiers;
}
}
public void SetUsedIdentifiers(ReadOnlyCollection<string> identifiers)
{
_usedIdentifiers = identifiers;
}
#endregion
#region ICanHandleUsedIdentifiers Members
Private _usedIdentifiers As ReadOnlyCollection(Of String)
Friend Readonly Property UsedIdentifiers() As ReadOnlyCollection(Of String)
Get
Return _usedIdentifiers
End Get
End Property
Public Sub SetUsedIdentifiers(identifiers As ReadOnlyCollection(Of String))
_usedIdentifiers = identifiers
End Sub
#End Region