SYMBOL INDEX (1944 symbols across 332 files) FILE: CodeHub.Core/App.cs class App (line 9) | public class App : MvxApplication method Initialize (line 14) | public override void Initialize() FILE: CodeHub.Core/Data/Account.cs class Account (line 6) | public class Account class AccountExtensions (line 51) | public static class AccountExtensions method GetFilter (line 53) | public static T GetFilter(this Account account, string key) where T... method SetFilter (line 61) | public static void SetFilter(this Account account, string key, object ... class PinnedRepository (line 71) | public class PinnedRepository class Filter (line 82) | public class Filter class FilterExtensions (line 87) | public static class FilterExtensions method GetData (line 89) | public static T GetData(this Filter filter) where T : new() method SetData (line 101) | public static void SetData(this Filter filter, object o) FILE: CodeHub.Core/Data/ImgurResponse.cs class ImgurResponse (line 3) | public class ImgurResponse class ImgurDataModel (line 9) | public class ImgurDataModel FILE: CodeHub.Core/Data/Language.cs class Language (line 5) | [DebuggerDisplay("{Name}")] method Language (line 8) | public Language() { } method Language (line 10) | public Language(string name, string slug) method Equals (line 20) | public override bool Equals(object obj) method GetHashCode (line 32) | public override int GetHashCode() FILE: CodeHub.Core/Data/LanguageRepository.cs class LanguageRepository (line 8) | public class LanguageRepository method GetLanguages (line 13) | public async Task> GetLanguages() FILE: CodeHub.Core/Data/TrendingRepository.cs type ITrendingRepository (line 8) | public interface ITrendingRepository method GetTrendingRepositories (line 10) | Task> GetTrendingRepositories(string since, ... class TrendingRepository (line 13) | public class TrendingRepository : ITrendingRepository method GetTrendingRepositories (line 17) | public async Task> GetTrendingRepositories(s... FILE: CodeHub.Core/Extensions/CommandExtensions.cs class ReactiveCommandExtensions (line 7) | public static class ReactiveCommandExtensions method ExecuteNow (line 9) | public static IDisposable ExecuteNow( method InvokeReactiveCommand (line 13) | public static IDisposable InvokeReactiveCommand( method InvokeReactiveCommand (line 17) | public static IDisposable InvokeReactiveCommand( FILE: CodeHub.Core/Extensions/ExceptionExtensions.cs class ExceptionExtensions (line 3) | public static class ExceptionExtensions method GetInnerException (line 5) | public static Exception GetInnerException(this Exception This) FILE: CodeHub.Core/Extensions/GitHubClientExtensions.cs class GitHubClientExtensions (line 7) | public static class GitHubClientExtensions method RetrieveList (line 9) | public static GitHubList RetrieveList( FILE: CodeHub.Core/Extensions/ObservableExtensions.cs class ObservableExtensions (line 9) | public static class ObservableExtensions method BindCommand (line 11) | public static IDisposable BindCommand(this IObservable @this, IC... method SubscribeError (line 16) | public static IDisposable SubscribeError(this IObservable @this,... FILE: CodeHub.Core/Extensions/ReactiveListExtensions.cs class ReactiveListExtensions (line 6) | public static class ReactiveListExtensions method Reset (line 8) | public static void Reset(this IReactiveList @this, IEnumerable WithTimeout(this Task task, TimeSpan timeout) method WithTimeout (line 15) | public static Task WithTimeout(this Task task, TimeSpan timeout) method ToBackground (line 20) | public static IDisposable ToBackground(this Task task, Action... method ToBackground (line 27) | public static IDisposable ToBackground(this Task task) method ToBackground (line 33) | public static IDisposable ToBackground(this Task task) method ToBackground (line 39) | public static IDisposable ToBackground(this Task task, Action action) method HandleError (line 46) | private static void HandleError(Exception e) FILE: CodeHub.Core/Filters/BaseIssuesFilterModel.cs class BaseIssuesFilterModel (line 5) | public abstract class BaseIssuesFilterModel : FilterModel method BaseIssuesFilterModel (line 11) | protected BaseIssuesFilterModel() type Sort (line 17) | public enum Sort FILE: CodeHub.Core/Filters/IssuesFilterModel.cs class IssuesFilterModel (line 5) | public class IssuesFilterModel : BaseIssuesFilterModel class MilestoneKeyValue (line 21) | public class MilestoneKeyValue method IssuesFilterModel (line 28) | public IssuesFilterModel() method CreateOpenFilter (line 37) | public static IssuesFilterModel CreateOpenFilter() method CreateClosedFilter (line 45) | public static IssuesFilterModel CreateClosedFilter() method CreateMineFilter (line 55) | public static IssuesFilterModel CreateMineFilter(string username) method Clone (line 60) | public override IssuesFilterModel Clone() method Equals (line 65) | public override bool Equals(object obj) method GetHashCode (line 77) | public override int GetHashCode() FILE: CodeHub.Core/Filters/MyIssuesFilterModel.cs class MyIssuesFilterModel (line 6) | public class MyIssuesFilterModel : BaseIssuesFilterModel labels) FILE: CodeHub.Core/Messages/SelectedAssignedToMessage.cs class SelectedAssignedToMessage (line 5) | public class SelectedAssignedToMessage method SelectedAssignedToMessage (line 9) | public SelectedAssignedToMessage(BasicUserModel user) FILE: CodeHub.Core/Messages/SelectedMilestoneMessage.cs class SelectedMilestoneMessage (line 5) | public class SelectedMilestoneMessage method SelectedMilestoneMessage (line 9) | public SelectedMilestoneMessage(MilestoneModel milestone) FILE: CodeHub.Core/Messages/SourceEditMessage.cs class SourceEditMessage (line 5) | public class SourceEditMessage FILE: CodeHub.Core/PresentationValues.cs class PresentationValues (line 3) | public class PresentationValues FILE: CodeHub.Core/Secrets.cs class Secrets (line 5) | public static class Secrets FILE: CodeHub.Core/Services/AccountsService.cs class AccountsService (line 11) | public class AccountsService : IAccountsService method GetActiveAccount (line 13) | public Task GetActiveAccount() method SetActiveAccount (line 16) | public Task SetActiveAccount(Account account) method GetAccounts (line 22) | public Task> GetAccounts() method Save (line 27) | public Task Save(Account account) method Remove (line 30) | public Task Remove(Account account) method Get (line 33) | public Task Get(string domain, string username) => Get(GetKey... method Get (line 35) | public Task Get(string key) method GetKey (line 40) | private string GetKey(Account account) method GetKey (line 43) | private string GetKey(string username, string domain) FILE: CodeHub.Core/Services/ApplicationService.cs class ApplicationService (line 9) | public class ApplicationService : IApplicationService method ApplicationService (line 21) | public ApplicationService(IAccountsService accountsService) method DeactivateUser (line 26) | public void DeactivateUser() method SetUserActivationAction (line 33) | public void SetUserActivationAction(Action action) method UpdateActiveAccount (line 41) | public Task UpdateActiveAccount() => _accountsService.Save(Account); method LoginAccount (line 43) | public async Task LoginAccount(Account account) FILE: CodeHub.Core/Services/IAccountsService.cs type IAccountsService (line 7) | public interface IAccountsService method GetActiveAccount (line 9) | Task GetActiveAccount(); method SetActiveAccount (line 11) | Task SetActiveAccount(Account account); method GetAccounts (line 13) | Task> GetAccounts(); method Save (line 15) | Task Save(Account account); method Remove (line 17) | Task Remove(Account account); method Get (line 19) | Task Get(string domain, string username); FILE: CodeHub.Core/Services/IAlertDialogService.cs type IAlertDialogService (line 8) | public interface IAlertDialogService method PromptYesNo (line 10) | Task PromptYesNo(string title, string message); method Alert (line 12) | Task Alert(string title, string message); method PromptTextBox (line 14) | Task PromptTextBox(string title, string message, string defaul... method Show (line 16) | void Show(string text); method Hide (line 18) | void Hide(); class AlertDialogServiceExtensions (line 21) | public static class AlertDialogServiceExtensions method Activate (line 23) | public static IDisposable Activate(this IAlertDialogService @this, str... method Activate (line 29) | public static IDisposable Activate(this IAlertDialogService @this, IOb... method Activate (line 40) | public static IDisposable Activate(this IAlertDialogService @this, Rea... method AlertExecuting (line 51) | public static IDisposable AlertExecuting(this ReactiveCommand @this, I... FILE: CodeHub.Core/Services/IApplicationService.cs type IApplicationService (line 7) | public interface IApplicationService method UpdateActiveAccount (line 15) | Task UpdateActiveAccount(); method DeactivateUser (line 17) | void DeactivateUser(); method SetUserActivationAction (line 19) | void SetUserActivationAction(Action action); method LoginAccount (line 23) | Task LoginAccount(Account account); FILE: CodeHub.Core/Services/IFeaturesService.cs type IFeaturesService (line 5) | public interface IFeaturesService method ActivateProDirect (line 9) | void ActivateProDirect(); method ActivatePro (line 11) | Task ActivatePro(); method RestorePro (line 13) | Task RestorePro(); FILE: CodeHub.Core/Services/IImgurService.cs type IImgurService (line 6) | public interface IImgurService method SendImage (line 8) | Task SendImage(byte[] data); FILE: CodeHub.Core/Services/IMarkdownService.cs type IMarkdownService (line 5) | public interface IMarkdownService method Convert (line 7) | Task Convert(string s); FILE: CodeHub.Core/Services/IMessageService.cs type IMessageService (line 6) | public interface IMessageService method Send (line 8) | void Send(T message); method Listen (line 10) | IDisposable Listen(Action action); FILE: CodeHub.Core/Services/INetworkActivityService.cs type INetworkActivityService (line 6) | public interface INetworkActivityService method PushNetworkActive (line 8) | void PushNetworkActive(); method PopNetworkActive (line 10) | void PopNetworkActive(); class NetworkActivityServiceExtensions (line 13) | public static class NetworkActivityServiceExtensions method ActivateNetwork (line 15) | public static IDisposable ActivateNetwork(this INetworkActivityService... FILE: CodeHub.Core/Services/IPushNotificationsService.cs type IPushNotificationsService (line 5) | public interface IPushNotificationsService method Register (line 7) | Task Register(); method Deregister (line 9) | Task Deregister(); FILE: CodeHub.Core/Services/IViewModelTxService.cs type IViewModelTxService (line 3) | public interface IViewModelTxService method Add (line 5) | void Add(object obj); method Get (line 7) | object Get(); FILE: CodeHub.Core/Services/ImgurService.cs class ImgurService (line 9) | public class ImgurService : IImgurService method SendImage (line 14) | public async Task SendImage(byte[] data) FILE: CodeHub.Core/Services/LoginService.cs type ILoginService (line 12) | public interface ILoginService method LoginWithToken (line 14) | Task LoginWithToken(string clientId, string clientSecret, string code,... method LoginWithToken (line 16) | Task LoginWithToken(string apiDomain, string webDomain, string token, ... method LoginWithBasic (line 18) | Task LoginWithBasic(string domain, string user, string pass, string tw... class LoginService (line 21) | public class LoginService : ILoginService method LoginService (line 28) | public LoginService( method LoginWithToken (line 36) | public async Task LoginWithToken(string clientId, string clientSecret,... method LoginWithToken (line 62) | public async Task LoginWithToken(string apiDomain, string webDomain, s... method LoginWithBasic (line 90) | public async Task LoginWithBasic(string domain, string user, string pa... method GetScopes (line 123) | private static async Task> GetScopes(string domain, strin... method CheckScopes (line 138) | private static void CheckScopes(IEnumerable scopes) FILE: CodeHub.Core/Services/MessageService.cs class MessageService (line 6) | public class MessageService : IMessageService method Listen (line 10) | public IDisposable Listen(Action action) method Send (line 18) | public void Send(T message) class Reference (line 44) | private class Reference : IDisposable method Reference (line 49) | public Reference(object handle, Action removal) method Dispose (line 55) | public void Dispose() => _removal.Invoke(); FILE: CodeHub.Core/Services/ViewModelTxService.cs class ViewModelTxService (line 3) | public class ViewModelTxService : IViewModelTxService method Add (line 7) | public void Add(object obj) method Get (line 12) | public object Get() FILE: CodeHub.Core/Settings.cs class Settings (line 6) | public static class Settings FILE: CodeHub.Core/Utils/CustomObservableCollection.cs class CustomObservableCollection (line 10) | public class CustomObservableCollection : ObservableCollection method CustomObservableCollection (line 12) | public CustomObservableCollection() method CustomObservableCollection (line 17) | public CustomObservableCollection(IEnumerable collection) method CustomObservableCollection (line 23) | public CustomObservableCollection(List list) method AddRange (line 29) | public virtual void AddRange(IEnumerable collection) method RemoveRange (line 51) | public virtual void RemoveRange(IEnumerable collection) method Reset (line 68) | public virtual void Reset(T item) method Reset (line 73) | public virtual void Reset(IEnumerable collection) FILE: CodeHub.Core/Utils/DateTimeExtensions.cs class DateTimeExtensions (line 3) | public static class DateTimeExtensions method TotalDaysAgo (line 5) | public static int TotalDaysAgo(this DateTimeOffset d) FILE: CodeHub.Core/Utils/Emojis.cs class Emojis (line 7) | public static class Emojis method Emojis (line 11) | static Emojis() method FindAndReplace (line 888) | public static string FindAndReplace(string text) FILE: CodeHub.Core/Utils/FilterGroup.cs class FilterGroup (line 7) | public static class FilterGroup method CreateRangeString (line 11) | private static string CreateRangeString(int key) method CreateNumberedGroup (line 16) | public static List> CreateNumberedGroup method GitHubList (line 14) | public GitHubList( method Next (line 24) | public async Task> Next() FILE: CodeHub.Core/Utils/OctokitClientFactory.cs class OctokitClientFactory (line 10) | public static class OctokitClientFactory method Create (line 16) | public static GitHubClient Create( FILE: CodeHub.Core/Utils/OctokitNetworkClient.cs class OctokitNetworkClient (line 13) | class OctokitNetworkClient : IHttpClient method OctokitNetworkClient (line 18) | public OctokitNetworkClient(IHttpClient httpClient, INetworkActivitySe... method Send (line 24) | public async Task Send(IRequest request, System.Threading.C... method Dispose (line 30) | public void Dispose() => _httpClient.Dispose(); method SetRequestTimeout (line 32) | public void SetRequestTimeout(TimeSpan timeout) => _httpClient.SetRequ... FILE: CodeHub.Core/Utils/RepositoryIdentifier.cs class RepositoryIdentifier (line 5) | public class RepositoryIdentifier method RepositoryIdentifier (line 10) | public RepositoryIdentifier(string owner, string name) method FromFullName (line 16) | public static RepositoryIdentifier FromFullName(string id) FILE: CodeHub.Core/Utils/ViewModelExtensions.cs class ViewModelExtensions (line 5) | public static class ViewModelExtensions method GetApplication (line 7) | public static IApplicationService GetApplication(this BaseViewModel vm) FILE: CodeHub.Core/Utils/WeakReferenceExtensions.cs class WeakReferenceExtensions (line 3) | public static class WeakReferenceExtensions method Get (line 5) | public static T Get(this WeakReference @this) where T : class FILE: CodeHub.Core/ViewModels/Accounts/AddAccountViewModel.cs class AddAccountViewModel (line 14) | public class AddAccountViewModel : ReactiveObject method AddAccountViewModel (line 58) | public AddAccountViewModel( method HandleLoginException (line 77) | private IObservable HandleLoginException(Exception e) method Login (line 111) | private async Task Login() FILE: CodeHub.Core/ViewModels/Accounts/OAuthLoginViewModel.cs class OAuthLoginViewModel (line 10) | public class OAuthLoginViewModel : ReactiveObject method OAuthLoginViewModel (line 33) | public OAuthLoginViewModel( FILE: CodeHub.Core/ViewModels/App/FeedbackComposerViewModel.cs class FeedbackComposerViewModel (line 12) | public class FeedbackComposerViewModel : ReactiveObject method FeedbackComposerViewModel (line 37) | public FeedbackComposerViewModel( FILE: CodeHub.Core/ViewModels/App/FeedbackItemViewModel.cs class FeedbackItemViewModel (line 8) | public class FeedbackItemViewModel : ReactiveObject, ICanGoToViewModel method FeedbackItemViewModel (line 26) | internal FeedbackItemViewModel(string repositoryOwner, string reposito... FILE: CodeHub.Core/ViewModels/App/FeedbackViewModel.cs class FeedbackViewModel (line 10) | public class FeedbackViewModel : ReactiveObject, IProvidesSearchKeyword method FeedbackViewModel (line 35) | public FeedbackViewModel(IApplicationService applicationService = null) FILE: CodeHub.Core/ViewModels/App/MenuViewModel.cs class MenuViewModel (line 17) | public class MenuViewModel : BaseViewModel method MenuViewModel (line 47) | public MenuViewModel(IApplicationService application = null, method OnNotificationCountMessage (line 58) | private void OnNotificationCountMessage(NotificationCountMessage msg) method Load (line 108) | private void Load() method ShowMenuViewModel (line 166) | protected bool ShowMenuViewModel(object data) where T : IMvxViewModel FILE: CodeHub.Core/ViewModels/App/StartupViewModel.cs class StartupViewModel (line 13) | public class StartupViewModel : BaseViewModel method StartupViewModel (line 52) | public StartupViewModel( method Startup (line 60) | protected async Task Startup() method StarOrWatch (line 114) | private void StarOrWatch() FILE: CodeHub.Core/ViewModels/App/SupportViewModel.cs class SupportViewModel (line 10) | public class SupportViewModel : ReactiveObject, ILoadableViewModel method SupportViewModel (line 36) | public SupportViewModel(IApplicationService applicationService = null) FILE: CodeHub.Core/ViewModels/BaseViewModel.cs type IProvidesTitle (line 13) | public interface IProvidesTitle type IRoutingViewModel (line 18) | public interface IRoutingViewModel type IBaseViewModel (line 25) | public interface IBaseViewModel : ISupportsActivation, IProvidesTitle, I... class BaseViewModel (line 32) | public abstract class BaseViewModel : MvxViewModel, IBaseViewModel, IRea... method RaisePropertyChanging (line 40) | public void RaisePropertyChanging(PropertyChangingEventArgs args) method NavigateTo (line 65) | protected void NavigateTo(IBaseViewModel viewModel) method Dismiss (line 70) | protected void Dismiss() method GetService (line 117) | protected TService GetService() where TService : class method DisplayAlert (line 126) | protected void DisplayAlert(string message) method DisplayAlertAsync (line 135) | protected Task DisplayAlertAsync(string message) FILE: CodeHub.Core/ViewModels/Changesets/ChangesetViewModel.cs class ChangesetViewModel (line 15) | public class ChangesetViewModel : LoadableViewModel method ChangesetViewModel (line 60) | public ChangesetViewModel(IApplicationService application, IFeaturesSe... method Init (line 70) | public void Init(NavObject navObject) method Load (line 79) | protected override Task Load() method AddComment (line 95) | public async Task AddComment(string text) class NavObject (line 101) | public class NavObject FILE: CodeHub.Core/ViewModels/Changesets/ChangesetsViewModel.cs class ChangesetsViewModel (line 8) | public class ChangesetsViewModel : CommitsViewModel method ChangesetsViewModel (line 12) | public ChangesetsViewModel( method Init (line 19) | public void Init(NavObject navObject) method GetRequest (line 25) | protected override GitHubRequest> GetRequest() class NavObject (line 30) | public new class NavObject : CommitsViewModel.NavObject FILE: CodeHub.Core/ViewModels/Changesets/CommitsViewModel.cs class CommitsViewModel (line 12) | public abstract class CommitsViewModel : LoadableViewModel method CommitsViewModel (line 47) | protected CommitsViewModel( method Init (line 55) | public void Init(NavObject navObject) method Load (line 61) | protected override Task Load() method GetRequest (line 75) | protected abstract GitHubRequest> GetRequest(); class NavObject (line 77) | public class NavObject FILE: CodeHub.Core/ViewModels/CollectionViewModel.cs class CollectionViewModel (line 10) | public class CollectionViewModel : MvxViewModel, IEnumerable source) method Refresh (line 98) | public void Refresh() method DeferRefresh (line 108) | public IDisposable DeferRefresh() method EndDefer (line 114) | private void EndDefer() method GetEnumerator (line 121) | public IEnumerator GetEnumerator() method GetEnumerator (line 128) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... class DeferHelper (line 133) | private class DeferHelper : IDisposable method DeferHelper (line 137) | public DeferHelper(CollectionViewModel parent) method Dispose (line 142) | public void Dispose() FILE: CodeHub.Core/ViewModels/Events/BaseEventsViewModel.cs class BaseEventsViewModel (line 21) | public abstract class BaseEventsViewModel : LoadableViewModel method BaseEventsViewModel (line 33) | protected BaseEventsViewModel() method Load (line 38) | protected override Task Load() method CreateDataFromLoad (line 46) | private IEnumerable> CreateDataFromLoad(... method CreateRequest (line 63) | protected abstract GitHubRequest> CreateRequest(int p... method GoToCommits (line 65) | private void GoToCommits(EventModel.RepoModel repoModel, string branch) method GoToRepository (line 84) | private void GoToRepository(EventModel.RepoModel eventModel) method GoToUser (line 97) | private void GoToUser(string username) method GoToBranch (line 104) | private void GoToBranch(RepositoryIdentifier repoId, string branchName) method GoToTag (line 112) | private void GoToTag(EventModel.RepoModel eventModel, string tagName) method GoToIssue (line 126) | private void GoToIssue(RepositoryIdentifier repo, long id) method GoToPullRequest (line 139) | private void GoToPullRequest(RepositoryIdentifier repo, long id) method GoToPullRequests (line 151) | private void GoToPullRequests(RepositoryIdentifier repo) method GoToChangeset (line 162) | private void GoToChangeset(RepositoryIdentifier repo, string sha) method CreateEventTextBlocks (line 174) | private EventBlock CreateEventTextBlocks(EventModel eventModel) method CreateRepositoryTextBlock (line 560) | private TextBlock CreateRepositoryTextBlock(EventModel.RepoModel repoM... class EventBlock (line 578) | public class EventBlock method EventBlock (line 585) | public EventBlock() class TextBlock (line 592) | public class TextBlock method TextBlock (line 596) | public TextBlock() method TextBlock (line 600) | public TextBlock(string text) class AnchorBlock (line 606) | public class AnchorBlock : TextBlock method AnchorBlock (line 608) | public AnchorBlock(string text, Action tapped) : base(text) method AnchorBlock (line 615) | public AnchorBlock(Action tapped) FILE: CodeHub.Core/ViewModels/Events/NewsViewModel.cs class NewsViewModel (line 6) | public class NewsViewModel : BaseEventsViewModel method CreateRequest (line 8) | protected override GitHubSharp.GitHubRequest> CreateR... FILE: CodeHub.Core/ViewModels/Events/OrganizationEventsViewModel.cs class OrganizationEventsViewModel (line 7) | public class OrganizationEventsViewModel : BaseEventsViewModel method Init (line 21) | public void Init(NavObject navobject) method CreateRequest (line 27) | protected override GitHubRequest> CreateRequest(int p... class NavObject (line 32) | public class NavObject FILE: CodeHub.Core/ViewModels/Events/RepositoryEventsViewModel.cs class RepositoryEventsViewModel (line 7) | public class RepositoryEventsViewModel : BaseEventsViewModel method Init (line 21) | public void Init(NavObject navObject) method CreateRequest (line 27) | protected override GitHubRequest> CreateRequest(int p... class NavObject (line 32) | public class NavObject FILE: CodeHub.Core/ViewModels/Events/UserEventsViewModel.cs class UserEventsViewModel (line 7) | public class UserEventsViewModel : BaseEventsViewModel method Init (line 15) | public void Init(NavObject navObject) method CreateRequest (line 20) | protected override GitHubRequest> CreateRequest(int p... class NavObject (line 25) | public class NavObject FILE: CodeHub.Core/ViewModels/FilterGroup.cs class FilterGroup (line 6) | public class FilterGroup : IGrouping method FilterGroup (line 10) | public FilterGroup(string key, List elements) method GetEnumerator (line 16) | public IEnumerator GetEnumerator() method GetEnumerator (line 21) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... FILE: CodeHub.Core/ViewModels/FilterModel.cs class FilterModel (line 5) | [Serializable] method Clone (line 8) | public abstract TF Clone(); FILE: CodeHub.Core/ViewModels/FilterableCollectionViewModel.cs class FilterableCollectionViewModel (line 7) | public class FilterableCollectionViewModel : CollectionViewModel<... method FilterableCollectionViewModel (line 22) | public FilterableCollectionViewModel(string filterKey) method ApplyFilter (line 31) | public void ApplyFilter(TF filter, bool saveAsDefault = false) FILE: CodeHub.Core/ViewModels/Gists/GistCreateViewModel.cs class GistCreateViewModel (line 12) | public class GistCreateViewModel : BaseViewModel method GistCreateViewModel (line 49) | public GistCreateViewModel(IMessageService messageService = null) method Save (line 58) | private async Task Save() FILE: CodeHub.Core/ViewModels/Gists/GistItemViewModel.cs class GistItemViewModel (line 11) | public class GistItemViewModel : ReactiveObject, ICanGoToViewModel method GetGistTitle (line 29) | private static string GetGistTitle(Gist gist) method GistItemViewModel (line 37) | public GistItemViewModel(Gist gist, Action gotoAction) FILE: CodeHub.Core/ViewModels/Gists/GistViewModel.cs class GistViewModel (line 10) | public class GistViewModel : LoadableViewModel method FromGist (line 65) | public static GistViewModel FromGist(Gist gist) method Init (line 74) | public void Init(NavObject navObject) method ToggleStarred (line 79) | private async Task ToggleStarred() method ForkGist (line 93) | public async Task ForkGist() method Load (line 100) | protected override async Task Load() method Edit (line 113) | public async Task Edit(GistUpdate editModel) class NavObject (line 118) | public class NavObject FILE: CodeHub.Core/ViewModels/Gists/GistsViewModel.cs class CurrentUserGistsViewModel (line 14) | public class CurrentUserGistsViewModel : GistsViewModel method CurrentUserGistsViewModel (line 18) | public CurrentUserGistsViewModel(string username, IMessageService mess... class GistsViewModel (line 26) | public class GistsViewModel : ReactiveObject method CreatePublicGistsViewModel (line 63) | public static GistsViewModel CreatePublicGistsViewModel() method CreateStarredGistsViewModel (line 66) | public static GistsViewModel CreateStarredGistsViewModel() method CreateUserGistsViewModel (line 69) | public static GistsViewModel CreateUserGistsViewModel(string username) method GistsViewModel (line 72) | public GistsViewModel( method LoadingError (line 126) | private void LoadingError(Exception err) method GoToItem (line 131) | private void GoToItem(GistItemViewModel item) method RetrieveItems (line 136) | private async Task> RetrieveItems( FILE: CodeHub.Core/ViewModels/ICanGoToViewModel.cs type ICanGoToViewModel (line 6) | public interface ICanGoToViewModel FILE: CodeHub.Core/ViewModels/IFilterableViewModel.cs type IFilterableViewModel (line 3) | public interface IFilterableViewModel where TFilter : FilterMod... method ApplyFilter (line 7) | void ApplyFilter(TFilter filter, bool saveAsDefault = false); FILE: CodeHub.Core/ViewModels/IListViewModel.cs type IListViewModel (line 7) | public interface IListViewModel FILE: CodeHub.Core/ViewModels/ILoadableViewModel.cs type ILoadableViewModel (line 6) | public interface ILoadableViewModel FILE: CodeHub.Core/ViewModels/IProvidesSearchKeyword.cs type IProvidesSearchKeyword (line 3) | public interface IProvidesSearchKeyword FILE: CodeHub.Core/ViewModels/Issues/BaseIssuesViewModel.cs class BaseIssuesViewModel (line 14) | public abstract class BaseIssuesViewModel : LoadableViewMo... method Group (line 45) | protected virtual List> Group(IEnumerabl... type IBaseIssuesViewModel (line 71) | public interface IBaseIssuesViewModel : IMvxViewModel FILE: CodeHub.Core/ViewModels/Issues/IssueAddViewModel.cs class IssueAddViewModel (line 10) | public class IssueAddViewModel : IssueModifyViewModel method IssueAddViewModel (line 14) | public IssueAddViewModel(IMessageService messageService) method Save (line 20) | protected override async Task Save() method Init (line 52) | public void Init(NavObject navObject) class NavObject (line 57) | public class NavObject FILE: CodeHub.Core/ViewModels/Issues/IssueAssignedToViewModel.cs class IssueAssignedToViewModel (line 10) | public class IssueAssignedToViewModel : LoadableViewModel method IssueAssignedToViewModel (line 52) | public IssueAssignedToViewModel(IMessageService messageService) method Init (line 57) | public void Init(NavObject navObject) method SelectUser (line 68) | private async Task SelectUser(BasicUserModel x) method Load (line 98) | protected override Task Load() class NavObject (line 103) | public class NavObject FILE: CodeHub.Core/ViewModels/Issues/IssueEditViewModel.cs class IssueEditViewModel (line 11) | public class IssueEditViewModel : IssueModifyViewModel method IssueEditViewModel (line 31) | public IssueEditViewModel(IMessageService messageService) method Save (line 37) | protected override async Task Save() method Init (line 107) | public void Init(NavObject navObject) class NavObject (line 123) | public class NavObject FILE: CodeHub.Core/ViewModels/Issues/IssueLabelsViewModel.cs class IssueLabelsViewModel (line 12) | public class IssueLabelsViewModel : LoadableViewModel method Init (line 47) | public void Init(NavObject navObject) method IssueLabelsViewModel (line 63) | public IssueLabelsViewModel(IMessageService messageService) method SelectLabels (line 68) | private async Task SelectLabels(IEnumerable x) method Load (line 104) | protected override Task Load() class NavObject (line 109) | public class NavObject FILE: CodeHub.Core/ViewModels/Issues/IssueMilestonesViewModel.cs class IssueMilestonesViewModel (line 9) | public class IssueMilestonesViewModel : LoadableViewModel method IssueMilestonesViewModel (line 51) | public IssueMilestonesViewModel(IMessageService messageService) method Init (line 56) | public void Init(NavObject navObject) method SelectMilestone (line 67) | private async Task SelectMilestone(MilestoneModel x) method Load (line 97) | protected override Task Load() class NavObject (line 102) | public class NavObject FILE: CodeHub.Core/ViewModels/Issues/IssueModifyViewModel.cs class IssueModifyViewModel (line 11) | public abstract class IssueModifyViewModel : BaseViewModel method IssueModifyViewModel (line 99) | public IssueModifyViewModel(IMessageService messageService) method Init (line 104) | protected void Init(string username, string repository) method Save (line 114) | protected abstract Task Save(); FILE: CodeHub.Core/ViewModels/Issues/IssueViewModel.cs class IssueViewModel (line 18) | public class IssueViewModel : LoadableViewModel method Load (line 161) | protected override Task Load() method IssueViewModel (line 191) | public IssueViewModel( method Init (line 216) | public void Init(NavObject navObject) method AddComment (line 230) | public async Task AddComment(string text) method ToggleState (line 246) | private async Task ToggleState(bool closed) class NavObject (line 264) | public class NavObject FILE: CodeHub.Core/ViewModels/Issues/IssuesViewModel.cs class IssuesViewModel (line 13) | public class IssuesViewModel : BaseIssuesViewModel method IssuesViewModel (line 27) | public IssuesViewModel(IMessageService messageService) method Init (line 32) | public void Init(NavObject nav) method Load (line 66) | protected override Task Load() method CreateIssue (line 82) | public void CreateIssue(IssueModel issue) method DoesIssueBelong (line 89) | private bool DoesIssueBelong(IssueModel model) class NavObject (line 98) | public class NavObject FILE: CodeHub.Core/ViewModels/Issues/MyIssuesViewModel.cs class MyIssuesViewModel (line 12) | public class MyIssuesViewModel : BaseIssuesViewModel method MyIssuesViewModel (line 27) | public MyIssuesViewModel(IMessageService messageService = null) method Group (line 62) | protected override List> Group(IEnumerab... method Load (line 81) | protected override Task Load() FILE: CodeHub.Core/ViewModels/LoadableViewModel.cs class LoadableViewModel (line 11) | public abstract class LoadableViewModel : BaseViewModel method LoadResource (line 22) | private async Task LoadResource() method ExecuteLoadResource (line 45) | protected async Task ExecuteLoadResource() method LoadableViewModel (line 61) | protected LoadableViewModel() method HandleLoadCommand (line 66) | private async Task HandleLoadCommand() method Load (line 88) | protected abstract Task Load(); FILE: CodeHub.Core/ViewModels/MarkdownAccessoryViewModel.cs class MarkdownAccessoryViewModel (line 13) | public class MarkdownAccessoryViewModel : ReactiveObject method MarkdownAccessoryViewModel (line 22) | public MarkdownAccessoryViewModel( FILE: CodeHub.Core/ViewModels/Notifications/NotificationsViewModel.cs class NotificationsViewModel (line 17) | public class NotificationsViewModel : LoadableViewModel method GoToNotification (line 59) | private void GoToNotification(Octokit.Notification x) method NotificationsViewModel (line 87) | public NotificationsViewModel( method Load (line 114) | protected override async Task Load() method Read (line 127) | private async Task Read(Octokit.Notification model) method MarkRepoAsRead (line 151) | private async Task MarkRepoAsRead(string repo) method MarkAllAsRead (line 172) | private async Task MarkAllAsRead() method UpdateAccountNotificationsCount (line 195) | private void UpdateAccountNotificationsCount() FILE: CodeHub.Core/ViewModels/Organizations/OrganizationViewModel.cs class OrganizationViewModel (line 9) | public class OrganizationViewModel : LoadableViewModel method Init (line 15) | public void Init(NavObject navObject) method Load (line 36) | protected override Task Load() class NavObject (line 41) | public class NavObject FILE: CodeHub.Core/ViewModels/Organizations/OrganizationsViewModel.cs class OrganizationsViewModel (line 9) | public class OrganizationsViewModel : LoadableViewModel method Init (line 15) | public void Init(NavObject navObject) method OrganizationsViewModel (line 20) | public OrganizationsViewModel() method Load (line 31) | protected override Task Load() class NavObject (line 36) | public class NavObject FILE: CodeHub.Core/ViewModels/Organizations/TeamsViewModel.cs class TeamsViewModel (line 6) | public class TeamsViewModel : LoadableViewModel method TeamsViewModel (line 12) | public TeamsViewModel() method Init (line 18) | public void Init(NavObject navObject) method Load (line 23) | protected override Task Load() class NavObject (line 28) | public class NavObject FILE: CodeHub.Core/ViewModels/PullRequests/PullRequestCommitsViewModel.cs class PullRequestCommitsViewModel (line 9) | public class PullRequestCommitsViewModel : ChangesetsViewModel method PullRequestCommitsViewModel (line 17) | public PullRequestCommitsViewModel(IApplicationService applicationServ... method Init (line 22) | public void Init(NavObject navObject) method GetRequest (line 28) | protected override GitHubRequest> GetRequest() class NavObject (line 33) | public new class NavObject : CommitsViewModel.NavObject FILE: CodeHub.Core/ViewModels/PullRequests/PullRequestFilesViewModel.cs class PullRequestFilesViewModel (line 12) | public class PullRequestFilesViewModel : LoadableViewModel method Init (line 29) | public void Init(NavObject navObject) method Load (line 42) | protected override Task Load() class NavObject (line 47) | public class NavObject FILE: CodeHub.Core/ViewModels/PullRequests/PullRequestViewModel.cs class PullRequestViewModel (line 17) | public class PullRequestViewModel : LoadableViewModel method PullRequestViewModel (line 219) | public PullRequestViewModel( method Init (line 244) | public void Init(NavObject navObject) method AddComment (line 265) | public async Task AddComment(string text) method ToggleState (line 281) | private async Task ToggleState(bool closed) method Load (line 306) | protected override Task Load() method Merge (line 337) | public async Task Merge() method CanMerge (line 359) | private bool CanMerge() class NavObject (line 370) | public class NavObject FILE: CodeHub.Core/ViewModels/PullRequests/PullRequestsViewModel.cs class PullRequestsViewModel (line 12) | public class PullRequestsViewModel : LoadableViewModel method PullRequestsViewModel (line 43) | public PullRequestsViewModel(IMessageService messageService) method Init (line 49) | public void Init(NavObject navObject) method Load (line 72) | protected override Task Load() class NavObject (line 79) | public class NavObject FILE: CodeHub.Core/ViewModels/Repositories/RepositoriesViewModel.cs class RepositoriesViewModel (line 14) | public class RepositoriesViewModel : ReactiveObject method CreateWatchedViewModel (line 49) | public static RepositoriesViewModel CreateWatchedViewModel() method CreateStarredViewModel (line 52) | public static RepositoriesViewModel CreateStarredViewModel() method CreateForkedViewModel (line 55) | public static RepositoriesViewModel CreateForkedViewModel(string usern... method CreateOrganizationViewModel (line 58) | public static RepositoriesViewModel CreateOrganizationViewModel(string... method CreateTeamViewModel (line 61) | public static RepositoriesViewModel CreateTeamViewModel(int id) method CreateMineViewModel (line 64) | public static RepositoriesViewModel CreateMineViewModel() method CreateUsersViewModel (line 67) | public static RepositoriesViewModel CreateUsersViewModel(string username) method RepositoriesViewModel (line 77) | public RepositoriesViewModel( method LoadingError (line 143) | private void LoadingError(Exception err) method GoToRepository (line 155) | private void GoToRepository(RepositoryItemViewModel item) method RetrieveRepositories (line 160) | private async Task> RetrieveRepositories( FILE: CodeHub.Core/ViewModels/Repositories/RepositoryItemViewModel.cs class RepositoryItemViewModel (line 9) | [DebuggerDisplay("{Owner}/{Name}")] method RepositoryItemViewModel (line 30) | public RepositoryItemViewModel(Octokit.Repository repository, bool sho... FILE: CodeHub.Core/ViewModels/Repositories/RepositoryViewModel.cs class RepositoryViewModel (line 17) | public class RepositoryViewModel : LoadableViewModel method RepositoryViewModel (line 62) | public RepositoryViewModel(IApplicationService applicationService = null) method Init (line 67) | public void Init(NavObject navObject) method PinRepository (line 98) | private void PinRepository() method Load (line 130) | protected override async Task Load() method ToggleWatch (line 157) | private async Task ToggleWatch() method ToggleStar (line 191) | private async Task ToggleStar() class NavObject (line 210) | public class NavObject FILE: CodeHub.Core/ViewModels/Repositories/TrendingRepositoriesViewModel.cs class RepositoriesTrendingViewModel (line 14) | public class RepositoriesTrendingViewModel : ReactiveObject method RepositoriesTrendingViewModel (line 44) | public RepositoriesTrendingViewModel( method LoadingError (line 65) | private void LoadingError(Exception err) method Load (line 77) | private async Task Load() FILE: CodeHub.Core/ViewModels/Search/ExploreViewModel.cs class ExploreViewModel (line 5) | public class ExploreViewModel : ReactiveObject type SearchType (line 18) | public enum SearchType FILE: CodeHub.Core/ViewModels/Search/RepositoryExploreViewModel.cs class RepositoryExploreViewModel (line 12) | public class RepositoryExploreViewModel : ReactiveObject method RepositoryExploreViewModel (line 29) | public RepositoryExploreViewModel( FILE: CodeHub.Core/ViewModels/Search/UserExploreViewModel.cs class UserExploreViewModel (line 13) | public class UserExploreViewModel : ReactiveObject method UserExploreViewModel (line 28) | public UserExploreViewModel(IApplicationService applicationService = n... FILE: CodeHub.Core/ViewModels/Source/EditSourceViewModel.cs class EditSourceViewModel (line 9) | public class EditSourceViewModel : LoadableViewModel method EditSourceViewModel (line 30) | public EditSourceViewModel(IMessageService messageService = null) method Init (line 35) | public void Init(NavObject navObject) method Load (line 46) | protected override async Task Load() method Commit (line 54) | public async Task Commit(string data, string message) class NavObject (line 61) | public class NavObject FILE: CodeHub.Core/ViewModels/Users/UserItemViewModel.cs class UserItemViewModel (line 8) | public class UserItemViewModel : ReactiveObject, ICanGoToViewModel method UserItemViewModel (line 20) | internal UserItemViewModel(Octokit.User user, Action> RetrieveItems( FILE: CodeHub.Core/ViewModels/ViewModelExtensions.cs class ViewModelExtensions (line 16) | public static class ViewModelExtensions method RequestModel (line 18) | public static async Task RequestModel(this MvxViewModel view... method CreateMore (line 25) | public static void CreateMore(this MvxViewModel viewModel, GitHubRe... method SimpleCollectionLoad (line 44) | public static Task SimpleCollectionLoad(this CollectionViewModel... class BindExtensions (line 60) | public static class BindExtensions method Bind (line 62) | public static IObservable Bind(this T viewModel, System.Lin... method BindCollection (line 94) | public static IObservable BindCollection(this T viewModel, Sy... FILE: CodeHub.Core/ViewModels/WebBrowserViewModel.cs class WebBrowserViewModel (line 3) | public class WebBrowserViewModel : BaseViewModel method Init (line 7) | public void Init(NavObject navObject) class NavObject (line 12) | public class NavObject FILE: CodeHub.iOS/AkavacheSqliteLinkerOverride.cs class LinkerPreserve (line 8) | [Preserve] method LinkerPreserve (line 11) | static LinkerPreserve() class PreserveAttribute (line 18) | public class PreserveAttribute : Attribute FILE: CodeHub.iOS/AppDelegate.cs class AppDelegate (line 27) | [Register("AppDelegate")] method Main (line 42) | public static void Main(string[] args) method FinishedLaunching (line 53) | public override bool FinishedLaunching(UIApplication app, NSDictionary... method RegisterUserForNotifications (line 144) | public void RegisterUserForNotifications() method GoToStartupView (line 150) | private void GoToStartupView() method TransitionToViewController (line 161) | public void TransitionToViewController(UIViewController viewController) class CustomHttpMessageHandler (line 167) | class CustomHttpMessageHandler : DelegatingHandler method CustomHttpMessageHandler (line 169) | public CustomHttpMessageHandler() method SendAsync (line 174) | protected override Task SendAsync (HttpRequestM... method ReceivedRemoteNotification (line 182) | public override void ReceivedRemoteNotification(UIApplication applicat... method HandleNotification (line 189) | private void HandleNotification(NSDictionary data, bool fromBootup) method DidRegisterUserNotificationSettings (line 254) | public override void DidRegisterUserNotificationSettings (UIApplicatio... method RegisteredForRemoteNotifications (line 259) | public override void RegisteredForRemoteNotifications(UIApplication ap... method FailedToRegisterForRemoteNotifications (line 273) | public override void FailedToRegisterForRemoteNotifications(UIApplicat... method OpenUrl (line 278) | public override bool OpenUrl(UIApplication application, NSUrl url, str... FILE: CodeHub.iOS/DialogElements/BooleanElement.cs class BooleanElement (line 9) | public class BooleanElement : Element method BooleanElement (line 54) | public BooleanElement (string caption, bool value = false) method GetCell (line 60) | public override UITableViewCell GetCell (UITableView tv) method UpdateValueChanged (line 75) | private static EventHandler UpdateValueChanged(WeakReference GetSize() method RefreshSize (line 77) | private async Task RefreshSize() method Dispose (line 87) | public void Dispose() method ForceResize (line 93) | public async Task ForceResize() method HtmlElement (line 102) | public HtmlElement (string cellKey) method CheckHeight (line 119) | public void CheckHeight() method Reload (line 129) | public void Reload() method GetHeight (line 134) | public nfloat GetHeight (UITableView tableView, NSIndexPath indexPath) method GetCell (line 139) | public override UITableViewCell GetCell (UITableView tv) method OnLoadFinished (line 156) | private void OnLoadFinished() method OnLoadStart (line 161) | private bool OnLoadStart(WKNavigationAction navigation) class NavigationDelegate (line 179) | private class NavigationDelegate : WKNavigationDelegate method NavigationDelegate (line 183) | public NavigationDelegate(HtmlElement parent) method DidFinishNavigation (line 188) | public override void DidFinishNavigation(WKWebView webView, WKNaviga... method DecidePolicy (line 193) | public override void DecidePolicy(WKWebView webView, WKNavigationAct... FILE: CodeHub.iOS/DialogElements/IElementSizing.cs type IElementSizing (line 7) | public interface IElementSizing method GetHeight (line 9) | nfloat GetHeight (UITableView tableView, NSIndexPath indexPath); FILE: CodeHub.iOS/DialogElements/IssueElement.cs class IssueElement (line 8) | public class IssueElement : Element, IElementSizing method IssueElement (line 21) | public IssueElement(string id, string title, string assigned, string s... method GetHeight (line 36) | public nfloat GetHeight (UITableView tableView, NSIndexPath indexPath) method GetCell (line 43) | public override UITableViewCell GetCell (UITableView tv) method Selected (line 50) | public override void Selected(UITableView tableView, NSIndexPath path) method Matches (line 56) | public override bool Matches(string text) FILE: CodeHub.iOS/DialogElements/LabelElement.cs class LabelElement (line 6) | public class LabelElement : StringElement method LabelElement (line 10) | public LabelElement(string name, string color) method CreateImage (line 17) | private static UIImage CreateImage(string color) FILE: CodeHub.iOS/DialogElements/LoadMoreElement.cs class LoadMoreElement (line 14) | public class LoadMoreElement : OwnerDrawnElement method LoadMoreElement (line 28) | public LoadMoreElement () method LoadMoreElement (line 33) | public LoadMoreElement (string normalCaption, string loadingCaption, A... method LoadMoreElement (line 37) | public LoadMoreElement (string normalCaption, string loadingCaption, A... method Draw (line 47) | public override void Draw(CGRect bounds, CoreGraphics.CGContext contex... method CellCreated (line 55) | protected override void CellCreated(UITableViewCell cell, UIView view) method GetCell (line 72) | public override UITableViewCell GetCell (UITableView tv) method Selected (line 126) | public override void Selected (UITableView tableView, NSIndexPath path) method LoadMore (line 132) | private void LoadMore() method GetTextSize (line 143) | CGSize GetTextSize (string text) method Height (line 151) | public override nfloat Height(CGRect bounds) method Layout (line 156) | void Layout (UITableViewCell cell, UIActivityIndicatorView activityInd... FILE: CodeHub.iOS/DialogElements/MenuElement.cs class MenuElement (line 7) | public class MenuElement : StringElement method MenuElement (line 24) | public MenuElement(string title, Action tapped, UIImage image, Uri ima... class Cell (line 35) | private class Cell : UITableViewCell method Cell (line 52) | public Cell(UITableViewCellStyle style, string key) method LayoutSubviews (line 65) | public override void LayoutSubviews() method GetCell (line 96) | public override UITableViewCell GetCell(UITableView tv) method CreateTableViewCell (line 105) | protected override UITableViewCell CreateTableViewCell(UITableViewCell... FILE: CodeHub.iOS/DialogElements/MilestoneElement.cs class MilestoneElement (line 8) | public class MilestoneElement : Element method MilestoneElement (line 21) | public MilestoneElement(int number, string title, int openIssues, int ... method GetCell (line 30) | public override UITableViewCell GetCell(UITableView tv) method Selected (line 42) | public override void Selected(UITableView tableView, NSIndexPath path) FILE: CodeHub.iOS/DialogElements/MultilinedElement.cs class MultilinedElement (line 10) | public class MultilinedElement : Element method MultilinedElement (line 56) | public MultilinedElement(string caption = null, string details = null) method GetCell (line 62) | public override UITableViewCell GetCell(UITableView tv) method Selected (line 70) | public override void Selected (UITableView tableView, NSIndexPath inde... FILE: CodeHub.iOS/DialogElements/NewsFeedElement.cs class NewsFeedElement (line 11) | public class NewsFeedElement : Element class TextBlock (line 28) | public class TextBlock method TextBlock (line 33) | public TextBlock() method TextBlock (line 37) | public TextBlock(string value) method TextBlock (line 42) | public TextBlock(string value, Action tapped = null) method NewsFeedElement (line 49) | public NewsFeedElement(string imageUrl, DateTimeOffset time, IEnumerab... method CreateAttributedStringFromBlocks (line 66) | private static Tuple... method GetCell (line 110) | public override UITableViewCell GetCell (UITableView tv) method Selected (line 117) | public override void Selected(UITableView tableView, NSIndexPath path) FILE: CodeHub.iOS/DialogElements/OwnerDrawnElement.cs class OwnerDrawnElement (line 8) | public abstract class OwnerDrawnElement : Element, IElementSizing method OwnerDrawnElement (line 20) | public OwnerDrawnElement (UITableViewCellStyle style, string cellIdent... method GetHeight (line 26) | public nfloat GetHeight (UITableView tableView, NSIndexPath indexPath) method GetCell (line 31) | public override UITableViewCell GetCell (UITableView tv) method CellCreated (line 51) | protected virtual void CellCreated(UITableViewCell cell, UIView view) method Draw (line 55) | public abstract void Draw(CGRect bounds, CGContext context, UIView view); method Height (line 57) | public abstract nfloat Height(CGRect bounds); class OwnerDrawnCell (line 59) | class OwnerDrawnCell : UITableViewCell method OwnerDrawnCell (line 63) | public OwnerDrawnCell(OwnerDrawnElement element, UITableViewCellStyl... method Update (line 88) | public void Update() method LayoutSubviews (line 94) | public override void LayoutSubviews() class OwnerDrawnCellView (line 102) | class OwnerDrawnCellView : UIView method OwnerDrawnCellView (line 106) | public OwnerDrawnCellView(OwnerDrawnElement element) method Update (line 123) | public void Update() method Draw (line 129) | public override void Draw (CGRect rect) FILE: CodeHub.iOS/DialogElements/PaginateElement.cs class PaginateElement (line 5) | public class PaginateElement : LoadMoreElement method PaginateElement (line 7) | static PaginateElement() method PaginateElement (line 12) | public PaginateElement(string normal, string loading) method CellCreated (line 20) | protected override void CellCreated(UITableViewCell cell, UIView view) FILE: CodeHub.iOS/DialogElements/PullRequestElement.cs class PullRequestElement (line 10) | public class PullRequestElement : Element method PullRequestElement (line 15) | public PullRequestElement(PullRequestModel model, Action action) method GetCell (line 21) | public override UITableViewCell GetCell (UITableView tv) method Matches (line 28) | public override bool Matches(string text) method Selected (line 33) | public override void Selected(UITableView tableView, NSIndexPath path) FILE: CodeHub.iOS/DialogElements/RootElement.cs class RootElement (line 10) | public class RootElement : IEnumerable
method RootElement (line 25) | public RootElement(UITableView tableView) method IndexOf (line 40) | internal int IndexOf (Section target) method Add (line 51) | public void Add (Section section) method Add (line 61) | public void Add (IEnumerable
sections) method Add (line 67) | public void Add(params Section[] sections) method MakeIndexSet (line 72) | NSIndexSet MakeIndexSet (int start, int count) method Insert (line 80) | public void Insert (int idx, UITableViewRowAnimation anim, params Sect... method Insert (line 99) | public void Insert (int idx, Section section) method RemoveAt (line 104) | public void RemoveAt (int idx, UITableViewRowAnimation anim) method Remove (line 113) | public void Remove (Section s) method Remove (line 123) | public void Remove (Section s, UITableViewRowAnimation anim) method Clear (line 133) | public void Clear () method Reset (line 141) | public void Reset(IEnumerable
sections) method Reset (line 156) | public void Reset(params Section[] sections) method Reload (line 161) | public void Reload (Element element) method Reload (line 166) | public void Reload (Element[] elements) method GetEnumerator (line 183) | public IEnumerator
GetEnumerator() method GetEnumerator (line 188) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... FILE: CodeHub.iOS/DialogElements/Section.cs class Section (line 9) | public class Section : IEnumerable { method Section (line 27) | public Section() method Section (line 31) | public Section(UIView header, UIView footer = null) method Section (line 37) | public Section(string header, string footer = null) method Add (line 98) | public void Add (Element element) method Add (line 110) | public void Add(IEnumerable elements) method AddAll (line 122) | public int AddAll(IEnumerable elements) method Insert (line 144) | public void Insert (int idx, UITableViewRowAnimation anim, params Elem... method Insert (line 165) | public int Insert (int idx, UITableViewRowAnimation anim, IEnumerable<... method InsertVisual (line 189) | void InsertVisual (int idx, UITableViewRowAnimation anim, int count) method Insert (line 201) | public void Insert (int index, params Element [] newElements) method Remove (line 206) | public void Remove (Element e, UITableViewRowAnimation animation = UIT... method Remove (line 223) | public void Remove (int idx) method RemoveRange (line 240) | public void RemoveRange (int start, int count, UITableViewRowAnimation... method GetEnumerator (line 269) | public IEnumerator GetEnumerator() method GetEnumerator (line 274) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... method Clear (line 284) | public void Clear () method Reset (line 293) | public void Reset(IEnumerable elements, UITableViewRowAnimati... FILE: CodeHub.iOS/DialogElements/SplitButtonElement.cs class SplitButtonElement (line 11) | public class SplitButtonElement : Element class Button (line 19) | public class Button method Button (line 24) | public Button(SplitButtonElement element, string text, string caption) method AddButton (line 54) | public Button AddButton(string caption, string text = null) method SplitButtonElement (line 61) | public SplitButtonElement() method GetCell (line 65) | public override UITableViewCell GetCell(UITableView tv) class SplitButtonCell (line 79) | private class SplitButtonCell : UITableViewCell method SplitButtonCell (line 84) | static SplitButtonCell() method SplitButtonCell (line 91) | public SplitButtonCell(int buttons) method SetButtons (line 102) | public void SetButtons(List