ComponentOne Data Source for Entity Framework
C1.Data.DataSource Namespace / ClientViewSource Class / LoadedData Event

In This Topic
    LoadedData Event
    In This Topic
    Occurs when a load operation is completed, or when an exception was thrown during the load operation.
    Syntax
    'Declaration
     
    
    Public Event LoadedData As System.EventHandler(Of ClientViewLoadedEventArgs)
    public event System.EventHandler<ClientViewLoadedEventArgs> LoadedData
    Event Data

    The event handler receives an argument of type ClientViewLoadedEventArgs containing data related to this event. The following ClientViewLoadedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the loading error if the loading failed.  
    Gets a value indicating whether the loading has failed. If true, inspect the Error property for details.  
    Gets a value indicating whether the loading error has been marked as handled by calling MarkErrorAsHandled.  
    Gets all entities loaded by a client view.  
    Gets the total number of rows for the original query without any paging applied to it.  
    See Also