protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            SetContentView(Resource.Layout.WebContentListView);

            WebContentListScreenlet webContentListScreelet =
                (WebContentListScreenlet)FindViewById(Resource.Id.web_content_list_screenlet);

            webContentListScreelet.Listener = this;
        }
 public virtual void OnWebContentListResponse(WebContentListScreenlet screenlet, WebContent[] contents)
 {
     Console.WriteLine($"WebContent response: {contents.Length} entries");
 }
 public virtual void OnWebContentSelected(WebContentListScreenlet screenlet, WebContent content)
 {
     Console.WriteLine($"WebContent selected: {content.Attributes}");
 }
 public virtual void OnWebContentListError(WebContentListScreenlet screenlet, NSError error)
 {
     Console.WriteLine($"WebContent error: {error.DebugDescription}");
 }