SYMBOL INDEX (2973 symbols across 484 files) FILE: ActionCenterDemo/ActionCenterDemo/App.xaml.cs class App (line 6) | sealed partial class App : Common.ApplicationBase method App (line 8) | public App() : base() method OnLaunchedAsync (line 13) | protected override Task OnLaunchedAsync(LaunchActivatedEventArgs e) FILE: ActionCenterDemo/ActionCenterDemo/Common/ApplicationBase.cs class ApplicationBase (line 16) | public abstract partial class ApplicationBase : Application method ApplicationBase (line 18) | public ApplicationBase() method HandleResuming (line 32) | protected virtual void HandleResuming(object s, object e) { } method HandleSuspendingAsync (line 33) | protected virtual Task HandleSuspendingAsync(object s, SuspendingEvent... method OnInitializeAsync (line 37) | protected virtual Task OnInitializeAsync() { return Task.FromResult canExecute) : base(execute, ... method Command (line 22) | public Command(Action execute) : base(execute) { } method Command (line 23) | public Command(Action execute, Func canExecute) : base(exe... class Command (line 19) | public class Command method Command (line 14) | public Command(Action execute) : base(execute) { } method Command (line 15) | public Command(Action execute, Func canExecute) : base(execute, ... method Command (line 22) | public Command(Action execute) : base(execute) { } method Command (line 23) | public Command(Action execute, Func canExecute) : base(exe... class ViewModelBase (line 27) | public abstract class ViewModelBase method OnNavigatedTo (line 30) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFrom (line 31) | public virtual void OnNavigatedFrom(Dictionary state, ... type IMessage (line 35) | public interface IMessage { } class Message (line 38) | public class Message class Messenger (line 43) | public class Messenger : GalaSoft.MvvmLight.Messaging.Messenger method Subscribe (line 45) | public void Subscribe(object recipient, Action action) method Unsubscribe (line 49) | public void Unsubscribe(object recipient) method Publish (line 53) | public void Publish(T message) FILE: ActionCenterDemo/ActionCenterDemo/Converters/BoolToColorConverter.cs class BoolToColorConverter (line 11) | public class BoolToColorConverter : IValueConverter method Convert (line 13) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 22) | public object ConvertBack(object value, Type targetType, object parame... FILE: ActionCenterDemo/ActionCenterDemo/Converters/CountToVisibilityConverter.cs class CountToVisibilityConverter (line 11) | public class CountToVisibilityConverter : IValueConverter method Convert (line 13) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 18) | public object ConvertBack(object value, Type targetType, object parame... FILE: ActionCenterDemo/ActionCenterDemo/Models/MessageItem.cs class MessageItem (line 9) | public sealed class MessageItem FILE: ActionCenterDemo/ActionCenterDemo/Models/ToastParams.cs class ToastParams (line 9) | class ToastParams FILE: ActionCenterDemo/ActionCenterDemo/Repositories/MessageItemRepository.cs class MessageItemRepository (line 13) | class MessageItemRepository method MessageItemRepository (line 17) | private MessageItemRepository() method LoadData (line 22) | public void LoadData() method GetInstance (line 35) | public static MessageItemRepository GetInstance() method GetAllMessageItems (line 44) | public IEnumerable GetAllMessageItems() method AddAsync (line 49) | public async Task AddAsync(MessageItem messageItem) method RemoveAsync (line 54) | public async Task RemoveAsync(string iD) method UpdateAsync (line 63) | public async Task UpdateAsync(MessageItem messageItem) method Find (line 77) | public IEnumerable Find(Func predicate) method PersistAsync (line 82) | private async Task PersistAsync() method SaveChanges (line 87) | public void SaveChanges() FILE: ActionCenterDemo/ActionCenterDemo/Services/DispatcherService.cs class DispatchService (line 9) | public static class DispatchService method InvokeAsync (line 11) | public static async void InvokeAsync(Action action) FILE: ActionCenterDemo/ActionCenterDemo/Services/NavigationService.cs class NavigationService (line 13) | public class NavigationService method NavigationService (line 21) | public NavigationService(Frame frame) method NavigateFrom (line 28) | void NavigateFrom(bool suspending) method NavigateTo (line 42) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 64) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 73) | public void RestoreSavedNavigation() { /* TODO */ } method GoBack (line 75) | public void GoBack() { _frame.GoBack(); } method GoForward (line 79) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 83) | public void ClearHistory() { _frame.SetNavigationState("1,0"); } method Suspending (line 85) | public void Suspending() { NavigateFrom(true); } method Show (line 87) | public void Show(SettingsFlyout flyout, string parameter = null) class NavigationFacade (line 102) | public class NavigationFacade method NavigationFacade (line 104) | public NavigationFacade(Frame frame) method Navigate (line 114) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 116) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 118) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 124) | public void GoBack() { _frame.GoBack(); } method GoForward (line 128) | public void GoForward() { _frame.GoForward(); } method GetValue (line 136) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 138) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 140) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 168) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 206) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... class NavigationEventArgs (line 215) | public class NavigationEventArgs : EventArgs FILE: ActionCenterDemo/ActionCenterDemo/Services/TileServices.cs class TileServices (line 11) | public class TileServices method SetBadgeCountOnTile (line 13) | static public void SetBadgeCountOnTile(int count) FILE: ActionCenterDemo/ActionCenterDemo/ViewModels/DetailPageViewModel.cs class DetailPageViewModel (line 16) | public class DetailPageViewModel : Common.ViewModelBase method DetailPageViewModel (line 20) | public DetailPageViewModel() method OnNavigatedTo (line 26) | public override async void OnNavigatedTo(string parameter, NavigationM... method LoadDesignData (line 53) | private void LoadDesignData() method LoadRuntimeDataAsync (line 58) | private async Task LoadRuntimeDataAsync(string parameter) FILE: ActionCenterDemo/ActionCenterDemo/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 18) | class MainPageViewModel : Common.ViewModelBase method MainPageViewModel (line 20) | public MainPageViewModel() method OnNavigatedTo (line 32) | public override async void OnNavigatedTo(string parameter, NavigationM... method LoadDesigntimeData (line 39) | private void LoadDesigntimeData() method LoadRuntimeDataAsync (line 52) | private async Task LoadRuntimeDataAsync() method DeliverToast (line 145) | private void DeliverToast(MessageItem msgItem) method SetBadgeCountOnTileandSim (line 211) | private void SetBadgeCountOnTileandSim() method Register (line 244) | public async Task Register() method Mytask_Completed (line 261) | private async void Mytask_Completed(BackgroundTaskRegistration sender,... method IsTaskRegistered (line 270) | public bool IsTaskRegistered() FILE: ActionCenterDemo/ActionCenterDemo/Views/DetailPage.xaml.cs class DetailPage (line 5) | public sealed partial class DetailPage : Page method DetailPage (line 7) | public DetailPage() FILE: ActionCenterDemo/ActionCenterDemo/Views/MainPage.xaml.cs class MainPage (line 25) | public sealed partial class MainPage : Page method MainPage (line 27) | public MainPage() FILE: ActionCenterDemo/ActionCenterHistoryChangedTask/ActionCenterChangedBackgroundTask.cs class ActionCenterChangedBackgroundTask (line 13) | public sealed class ActionCenterChangedBackgroundTask : IBackgroundTask method Run (line 15) | public void Run(IBackgroundTaskInstance taskInstance) method UpdateAppData (line 36) | private static void UpdateAppData(IReadOnlyList toa... FILE: ActionCenterDemo/ActionCenterHistoryChangedTask/MessageItem.cs class MessageItem (line 9) | class MessageItem FILE: ActionCenterDemo/ActionCenterHistoryChangedTask/ToastParams.cs class ToastParams (line 9) | class ToastParams FILE: AdaptiveCode/VisibleBoundsDemo/VisibleBoundsDemo/App.xaml.cs class App (line 26) | public sealed partial class App : Application method App (line 34) | public App() method OnLaunched (line 46) | protected override void OnLaunched(LaunchActivatedEventArgs e) method RootFrame_FirstNavigated (line 109) | private void RootFrame_FirstNavigated(object sender, NavigationEventAr... method OnSuspending (line 123) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AdaptiveCode/VisibleBoundsDemo/VisibleBoundsDemo/MainPage.xaml.cs class MainPage (line 12) | public sealed partial class MainPage : Page method MainPage (line 16) | public MainPage() method MainPage_VisibleBoundsChanged (line 28) | void MainPage_VisibleBoundsChanged(Windows.UI.ViewManagement.Applicati... method OnNavigatedTo (line 38) | protected override void OnNavigatedTo(NavigationEventArgs e) method ReportVisibleBounds (line 43) | private void ReportVisibleBounds() method RadioButton_Checked (line 53) | private void RadioButton_Checked(object sender, RoutedEventArgs e) method StatusBarHiddenCheckBox_Checked (line 83) | private void StatusBarHiddenCheckBox_Checked(object sender, RoutedEven... method StatusBarHiddenCheckBox_Unchecked (line 92) | private void StatusBarHiddenCheckBox_Unchecked(object sender, RoutedEv... method StatusBarBackgroundCheckBox_Checked (line 101) | private void StatusBarBackgroundCheckBox_Checked(object sender, Routed... method StatusBarBackgroundCheckBox_Unchecked (line 111) | private void StatusBarBackgroundCheckBox_Unchecked(object sender, Rout... method ExtendViewButton_Checked (line 120) | private void ExtendViewButton_Checked(object sender, RoutedEventArgs e) method ColourTitleBarButtons_Checked (line 128) | private void ColourTitleBarButtons_Checked(object sender, RoutedEventA... FILE: AdaptiveCode/VisibleBoundsDemo/VisibleBoundsDemo/Triggers/DeviceFamilyTrigger.cs class DeviceFamilyTrigger (line 5) | public class DeviceFamilyTrigger : StateTriggerBase FILE: AdaptiveUI/AdaptiveUI/App.xaml.cs class App (line 16) | sealed partial class App : Application method App (line 22) | public App() method OnLaunched (line 33) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 75) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 87) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AdaptiveUI/AdaptiveUI/Controls/AutoNavButton.cs type AutoNavMode (line 22) | public enum AutoNavMode class AutoNavButton (line 41) | public sealed class AutoNavButton : Control method OnModeChanged (line 60) | private static void OnModeChanged(DependencyObject d, DependencyProper... method AutoNavButton (line 71) | public AutoNavButton() method CalculateState (line 81) | private void CalculateState() method FindFrame (line 125) | private Frame FindFrame() method SetEnabled (line 132) | private void SetEnabled(bool enabled) method TryNavigate (line 149) | private bool TryNavigate() method AutoNavButton_Loaded (line 199) | private void AutoNavButton_Loaded(object sender, RoutedEventArgs e) method AutoNavButton_Unloaded (line 211) | private void AutoNavButton_Unloaded(object sender, RoutedEventArgs e) method NavButton_Click (line 220) | private void NavButton_Click(object sender, RoutedEventArgs e) method HardwareButtons_BackPressed (line 225) | private void HardwareButtons_BackPressed(object sender, BackPressedEve... method OnApplyTemplate (line 239) | protected override void OnApplyTemplate() method OnModeChanged (line 267) | private void OnModeChanged(DependencyPropertyChangedEventArgs e) FILE: AdaptiveUI/AdaptiveUI/Extensions/WeakEvent.cs class EventWatcher (line 16) | public class EventWatcher : IDisposable method EventWatcher (line 35) | public EventWatcher(object source, string eventName) method CreateHandlerDelegate (line 49) | private void CreateHandlerDelegate(Type signature) method Subscribe (line 83) | private void Subscribe(object source, string eventName) method Dispose (line 123) | void IDisposable.Dispose() method OnEventRaised (line 141) | protected virtual void OnEventRaised(params object[] parameters) class WeakEvent (line 151) | public class WeakEvent : EventWatcher class WeakSubscription (line 155) | private class WeakSubscription method WeakSubscription (line 157) | public WeakSubscription(Delegate del) class SubscriberCollection (line 166) | private class SubscriberCollection : Collection { } method FindRegistration (line 176) | static private WeakEvent FindRegistration(object source, string eventN... method VerifyDelegate (line 210) | static private void VerifyDelegate() where THandler : class method Subscribe (line 233) | static public void Subscribe(object source, string eventName... method Unsubscribe (line 273) | static public void Unsubscribe(object source, string eventNa... method WeakEvent (line 308) | private WeakEvent(object source, string eventName) : base(source, even... method FindSubscription (line 317) | private WeakSubscription FindSubscription(Delegate handler) method OnEventRaised (line 353) | protected override void OnEventRaised(params object[] parameters) method Subscribe (line 394) | private void Subscribe(Delegate handler) method Unsubscribe (line 412) | private void Unsubscribe(Delegate handler) FILE: AdaptiveUI/AdaptiveUI/Model/SampleInfo.cs class SampleInfo (line 13) | public class SampleInfo FILE: AdaptiveUI/AdaptiveUI/Triggers/ApiInformationTrigger.cs class ApiInformationTrigger (line 14) | public class ApiInformationTrigger : StateTriggerBase method ApiInformationTrigger (line 21) | public ApiInformationTrigger() method EvaluateTrigger (line 32) | private void EvaluateTrigger() FILE: AdaptiveUI/AdaptiveUI/Triggers/ControlSizeTrigger.cs class ControlSizeTrigger (line 10) | public class ControlSizeTrigger : StateTriggerBase method _targetElement_SizeChanged (line 52) | private void _targetElement_SizeChanged(object sender, SizeChangedEven... method UpdateTrigger (line 59) | private void UpdateTrigger() FILE: AdaptiveUI/AdaptiveUI/Triggers/DeviceFamilyTrigger.cs class DeviceFamilyTrigger (line 10) | public class DeviceFamilyTrigger : StateTriggerBase FILE: AdaptiveUI/AdaptiveUI/Triggers/InputTypeTrigger.cs class InputTypeTrigger (line 12) | public class InputTypeTrigger : StateTriggerBase method _targetElement_PointerPressed (line 42) | private void _targetElement_PointerPressed(object sender, PointerRoute... method UpdateTrigger (line 48) | public void UpdateTrigger() FILE: AdaptiveUI/AdaptiveUI/Triggers/InteractionModeTrigger.cs class InteractionModeTrigger (line 6) | class InteractionModeTrigger : StateTriggerBase method InteractionModeTrigger (line 8) | public InteractionModeTrigger() method Update (line 20) | void Update() FILE: AdaptiveUI/AdaptiveUI/Triggers/NetworkAvailableStateTrigger.cs class NetworkAvailableStateTrigger (line 11) | public class NetworkAvailableStateTrigger : StateTriggerBase method NetworkAvailableStateTrigger (line 13) | public NetworkAvailableStateTrigger() method NetworkInformation_NetworkStatusChanged (line 19) | private async void NetworkInformation_NetworkStatusChanged(object sender) method UpdateState (line 24) | private void UpdateState() method OnConnectionStatePropertyChanged (line 46) | private static void OnConnectionStatePropertyChanged(DependencyObject ... type ConnectionState (line 53) | public enum ConnectionState FILE: AdaptiveUI/AdaptiveUI/Triggers/OrientationTrigger.cs class OrientationTrigger (line 16) | public class OrientationTrigger : StateTriggerBase method OrientationTrigger (line 22) | public OrientationTrigger() method CalculateState (line 37) | private void CalculateState() method Window_SizeChanged (line 54) | private void Window_SizeChanged(object sender, WindowSizeChangedEventA... FILE: AdaptiveUI/AdaptiveUI/Views/ApiInformationPage.xaml.cs class ApiInformationPage (line 23) | public sealed partial class ApiInformationPage : Page method ApiInformationPage (line 25) | public ApiInformationPage() FILE: AdaptiveUI/AdaptiveUI/Views/MainPage.xaml.cs class MainPage (line 27) | public sealed partial class MainPage : Page method MainPage (line 29) | public MainPage() method SampleGrid_ItemClick (line 34) | private void SampleGrid_ItemClick(object sender, ItemClickEventArgs e) FILE: AdaptiveUI/AdaptiveUI/Views/OrientationPage.xaml.cs class OrientationPage (line 23) | public sealed partial class OrientationPage : Page method OrientationPage (line 25) | public OrientationPage() FILE: AdaptiveUI/AdaptiveUI/Views/WindowSizePage.xaml.cs class WindowSizePage (line 23) | public sealed partial class WindowSizePage : Page method WindowSizePage (line 25) | public WindowSizePage() FILE: AppService/AppService_EncoderDecoder/ClientApp/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 36) | public App() method OnLaunched (line 49) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 95) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 107) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AppService/AppService_EncoderDecoder/ClientApp/MainPage.xaml.cs class MainPage (line 27) | public sealed partial class MainPage : Page method MainPage (line 33) | public MainPage() method ButtonEncode_Click (line 38) | private async void ButtonEncode_Click(object sender, RoutedEventArgs e) method ButtonDecode_Click (line 43) | private async void ButtonDecode_Click(object sender, RoutedEventArgs e) method CallServiceAsync (line 49) | private async Task CallServiceAsync(string command) FILE: AppService/AppService_EncoderDecoder/ServerApp/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 36) | public App() method OnLaunched (line 49) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 95) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 107) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AppService/AppService_EncoderDecoder/ServerApp/MainPage.xaml.cs class MainPage (line 25) | public sealed partial class MainPage : Page method MainPage (line 27) | public MainPage() method ShowPFN (line 35) | private async void ShowPFN() FILE: AppService/AppService_EncoderDecoder/TextEncoderComponent/EncoderDecoderTask.cs class EncoderDecoderTask (line 14) | public sealed class EncoderDecoderTask : IBackgroundTask method Run (line 18) | public void Run(IBackgroundTaskInstance taskInstance) method TaskInstance_Canceled (line 35) | private void TaskInstance_Canceled(IBackgroundTaskInstance sender, Bac... method OnRequestReceived (line 40) | private async void OnRequestReceived(AppServiceConnection sender, AppS... method Encode (line 81) | public string Encode(string txt) method Decode (line 87) | public string Decode(string encodedString) FILE: AppServicesDemo/SimpleCalculatorAppService/AppServicesClientApp/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 31) | public App() method OnLaunched (line 42) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 90) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 102) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AppServicesDemo/SimpleCalculatorAppService/AppServicesClientApp/MainPage.xaml.cs class MainPage (line 15) | public sealed partial class MainPage : Page method MainPage (line 19) | public MainPage() method CallAppService (line 24) | private async void CallAppService() method EnsureConnectionToService (line 43) | private async System.Threading.Tasks.Task EnsureConnectionToService() method OnServiceClosed (line 68) | private void OnServiceClosed(AppServiceConnection sender, AppServiceCl... method button_Click (line 73) | private void button_Click(object sender, RoutedEventArgs e) method QuitButton_Click (line 78) | private async void QuitButton_Click(object sender, RoutedEventArgs e) method ClearServiceConnection (line 92) | private void ClearServiceConnection() FILE: AppServicesDemo/SimpleCalculatorAppService/AppServicesDemo/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 31) | public App() method OnLaunched (line 42) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 90) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 102) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AppServicesDemo/SimpleCalculatorAppService/AppServicesDemo/MainPage.xaml.cs class MainPage (line 12) | public sealed partial class MainPage : Page method MainPage (line 14) | public MainPage() FILE: AppServicesDemo/SimpleCalculatorAppService/AppServicesDemoTask/AppServiceTask.cs class AppServiceTask (line 15) | public sealed class AppServiceTask : IBackgroundTask method Run (line 19) | public void Run(IBackgroundTaskInstance taskInstance) method AppServiceConnection_RequestReceived (line 36) | private async void AppServiceConnection_RequestReceived(AppServiceConn... method TaskInstance_Canceled (line 70) | private void TaskInstance_Canceled(IBackgroundTaskInstance sender, Bac... FILE: AppServicesDemo/SynonymsAppServiceDemo/AppServicesClientApp/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 31) | public App() method OnLaunched (line 42) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 90) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 102) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AppServicesDemo/SynonymsAppServiceDemo/AppServicesClientApp/MainPage.xaml.cs class MainPage (line 26) | public sealed partial class MainPage : Page method MainPage (line 28) | public MainPage() method CallAppService (line 36) | private async void CallAppService() method EnsureConnectionToService (line 59) | private async System.Threading.Tasks.Task EnsureConnectionToService() method OnServiceClosed (line 85) | private void OnServiceClosed(AppServiceConnection sender, AppServiceCl... method button_Click (line 90) | private void button_Click(object sender, RoutedEventArgs e) method QuitButton_Click (line 95) | private async void QuitButton_Click(object sender, RoutedEventArgs e) method ClearServiceConnection (line 109) | private void ClearServiceConnection() method GetSynonymsButton_Click (line 182) | private async void GetSynonymsButton_Click(object sender, RoutedEventA... method DisplaySynonymsResponse (line 196) | private async System.Threading.Tasks.Task DisplaySynonymsResponse(Syno... FILE: AppServicesDemo/SynonymsAppServiceDemo/AppServicesDemo/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 31) | public App() method OnLaunched (line 42) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 90) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 102) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AppServicesDemo/SynonymsAppServiceDemo/AppServicesDemo/MainPage.xaml.cs class MainPage (line 26) | public sealed partial class MainPage : Page method MainPage (line 28) | public MainPage() method Button_Click (line 41) | private async void Button_Click(object sender, RoutedEventArgs e) FILE: AppServicesDemo/SynonymsAppServiceDemo/AppServicesDemoTask/AppServiceTask.cs class AppServiceTask (line 15) | public sealed class AppServiceTask : IBackgroundTask method Run (line 19) | public void Run(IBackgroundTaskInstance taskInstance) method AppServiceConnection_RequestReceived (line 36) | private async void AppServiceConnection_RequestReceived(AppServiceConn... method TaskInstance_Canceled (line 70) | private void TaskInstance_Canceled(IBackgroundTaskInstance sender, Bac... FILE: AppServicesDemo/SynonymsAppServiceDemo/SynonymsService/BingSynonymsResponse.cs class Metadata (line 10) | [DataContract] class Result (line 20) | [DataContract] class D (line 29) | [DataContract] class BingSynonymsResponse (line 36) | [DataContract] FILE: AppServicesDemo/SynonymsAppServiceDemo/SynonymsService/JSONHelper.cs class JSONHelper (line 7) | class JSONHelper method DeserializeObject (line 9) | public static T DeserializeObject(string objString) method SerializeObject (line 18) | public static string SerializeObject(T obj) FILE: AppServicesDemo/SynonymsAppServiceDemo/SynonymsService/SynonymApi.cs class SynonymApi (line 14) | class SynonymApi method SynonymApi (line 21) | public SynonymApi(string apiKey) method GetSynonymsAsync (line 29) | public async Task> GetSynonymsAsync(string term) FILE: AppServicesDemo/SynonymsAppServiceDemo/SynonymsService/SynonymsServiceTask.cs class SynonymsServiceTask (line 13) | public sealed class SynonymsServiceTask : IBackgroundTask method Run (line 20) | public void Run(IBackgroundTaskInstance taskInstance) method AppServiceConnection_RequestReceived (line 36) | private async void AppServiceConnection_RequestReceived(AppServiceConn... method TaskInstance_Canceled (line 93) | private void TaskInstance_Canceled(IBackgroundTaskInstance sender, Bac... FILE: AppServicesDemo/SynonymsAppServiceDemo/SynonymsServiceClientLibrary/SynonymsServiceClient.cs class SynonymsServiceClient (line 11) | public class SynonymsServiceClient method GetSynonymsAsync (line 17) | public async Task GetSynonymsAsync(string term) method EnsureConnectionToSynonymsService (line 54) | private async System.Threading.Tasks.Task EnsureConnectionToSynonymsSe... method CloseSynonymsServiceAsync (line 86) | public async Task CloseSynonymsServiceAsync() method ClearSynonymServiceConnection (line 99) | private void ClearSynonymServiceConnection() FILE: AppServicesDemo/SynonymsAppServiceDemo/SynonymsServiceClientLibrary/SynonymsServiceResponse.cs class SynonymsServiceResponse (line 10) | public class SynonymsServiceResponse FILE: AzureMobileApps/UWPDevMVA_Runtime/UWPDevMVAService/App_Start/WebApiConfig.cs class WebApiConfig (line 12) | public static class WebApiConfig method Register (line 14) | public static void Register() class UWPDevMVAInitializer (line 32) | public class UWPDevMVAInitializer : ClearDatabaseSchemaIfModelChanges method Initialize (line 14) | protected override void Initialize(HttpControllerContext controllerCon... method GetAllTodoItems (line 22) | public IQueryable GetAllTodoItems() method GetTodoItem (line 28) | public SingleResult GetTodoItem(string id) method PatchTodoItem (line 34) | public Task PatchTodoItem(string id, Delta patch) method PostTodoItem (line 40) | public async Task PostTodoItem(TodoItem item) method DeleteTodoItem (line 47) | public Task DeleteTodoItem(string id) FILE: AzureMobileApps/UWPDevMVA_Runtime/UWPDevMVAService/DataObjects/TodoItem.cs class TodoItem (line 5) | public class TodoItem : EntityData FILE: AzureMobileApps/UWPDevMVA_Runtime/UWPDevMVAService/Global.asax.cs class WebApiApplication (line 6) | public class WebApiApplication : System.Web.HttpApplication method Application_Start (line 8) | protected void Application_Start() FILE: AzureMobileApps/UWPDevMVA_Runtime/UWPDevMVAService/Models/UWPDevMVAContext.cs class UWPDevMVAContext (line 10) | public class UWPDevMVAContext : DbContext method UWPDevMVAContext (line 24) | public UWPDevMVAContext() : base(connectionStringName) method OnModelCreating (line 30) | protected override void OnModelCreating(DbModelBuilder modelBuilder) FILE: AzureMobileApps/UWPDevMVA_Windows_CS/UWPDevMVA/UWPDevMVA.WindowsPhone/App.xaml.cs class App (line 24) | sealed partial class App : Application method App (line 45) | public App() method OnLaunched (line 60) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 101) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 113) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: AzureMobileApps/UWPDevMVA_Windows_CS/UWPDevMVA/UWPDevMVA.WindowsPhone/DataModel/TodoItem.cs class TodoItem (line 8) | public class TodoItem FILE: AzureMobileApps/UWPDevMVA_Windows_CS/UWPDevMVA/UWPDevMVA.WindowsPhone/MainPage.cs class MainPage (line 19) | sealed partial class MainPage: Page method MainPage (line 25) | public MainPage() method InsertTodoItem (line 30) | private async Task InsertTodoItem(TodoItem todoItem) method RefreshTodoItems (line 40) | private async Task RefreshTodoItems() method UpdateCheckedTodoItem (line 67) | private async Task UpdateCheckedTodoItem(TodoItem item) method ButtonRefresh_Click (line 78) | private async void ButtonRefresh_Click(object sender, RoutedEventArgs e) method ButtonSave_Click (line 88) | private async void ButtonSave_Click(object sender, RoutedEventArgs e) method CheckBoxComplete_Checked (line 94) | private async void CheckBoxComplete_Checked(object sender, RoutedEvent... method OnNavigatedTo (line 101) | protected override async void OnNavigatedTo(NavigationEventArgs e) method InitLocalStoreAsync (line 109) | private async Task InitLocalStoreAsync() method SyncAsync (line 121) | private async Task SyncAsync() FILE: AzureMobileApps/UWPDevMVA_Windows_CS/UWPDevMVA/UWPDevMVA.WindowsPhone/MainPage.xaml.cs class MainPage (line 5) | public sealed partial class MainPage : Page FILE: BackgroundExecution/BackgroundTask/MyUpdateBadgeTask.cs class MyUpdateBadgeTask (line 13) | public sealed class MyUpdateBadgeTask : IBackgroundTask method Run (line 15) | public void Run(IBackgroundTaskInstance taskInstance) method UpdateTile (line 53) | public static void UpdateTile(int value) FILE: BackgroundExecution/BackgroundTask/MyUpdateTileTask.cs class MyUpdateTileTask (line 23) | public sealed class MyUpdateTileTask : XamlRenderingBackgroundTask method OnRun (line 25) | protected override async void OnRun(IBackgroundTaskInstance taskInstance) method UpdateTileAsync (line 59) | private async Task UpdateTileAsync() FILE: BackgroundExecution/ForegroundApp/App.xaml.cs class App (line 7) | sealed partial class App : Common.BootStrapper method App (line 9) | public App() : base() method OnLaunchedAsync (line 14) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: BackgroundExecution/ForegroundApp/Common/BackgroundHelper.cs class BackgroundHelper (line 10) | public static class BackgroundHelper method FindRegistration (line 12) | public static IBackgroundTaskRegistration FindRegistration() where ... method Register (line 20) | public async static Task Register(IBack... method Unregister (line 54) | public async static Task Unregister() where T : class FILE: BackgroundExecution/ForegroundApp/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 51) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 52) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 53) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 54) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 55) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 56) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 57) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 59) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 67) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 69) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 118) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 137) | public virtual Task OnInitializeAsync() { return Task.FromResult(ref T storage, T value, [CallerMemberName()]string ... FILE: BackgroundExecution/ForegroundApp/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: BackgroundExecution/ForegroundApp/Mvvm/ViewModelBase.cs class ViewModelBase (line 7) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedTo (line 9) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFrom (line 11) | public virtual void OnNavigatedFrom(Dictionary state, ... FILE: BackgroundExecution/ForegroundApp/Repositories/TodoItemRepository.cs class TodoItemRepository (line 9) | public class TodoItemRepository method Factory (line 11) | public Models.TodoItem Factory(string key = null, bool? complete = nul... method Clone (line 21) | public Models.TodoItem Clone(Models.TodoItem item) method Sample (line 32) | public IEnumerable Sample(int count = 5) FILE: BackgroundExecution/ForegroundApp/Repositories/TodoListRepository.cs class TodoListRepository (line 9) | public class TodoListRepository method TodoListRepository (line 16) | public TodoListRepository() method GetAsync (line 22) | public async Task> GetAsync() method GetAsync (line 27) | public async Task GetAsync(string key) method SaveAsync (line 32) | public async Task SaveAsync(List list) method Factory (line 37) | public Models.TodoList Factory(string key = null, string title = null,... method Clone (line 47) | public Models.TodoList Clone(Models.TodoList list) method Sample (line 57) | public IEnumerable Sample(int count = 5) FILE: BackgroundExecution/ForegroundApp/Services/FileService/FileHelper.cs class FileHelper (line 10) | class FileHelper method FileExistsAsync (line 16) | public async Task FileExistsAsync(string key, StorageStrategies ... method FileExistsAsync (line 21) | public async Task FileExistsAsync(string key, Windows.Storage.St... method DeleteFileAsync (line 29) | public async Task DeleteFileAsync(string key, StorageStrategies ... method ReadFileAsync (line 42) | public async Task ReadFileAsync(string key, StorageStrategies lo... method WriteFileAsync (line 67) | public async Task WriteFileAsync(string key, T value, Storage... method CreateFileAsync (line 79) | private async Task CreateFileAsync(string... method GetIfFileExistsAsync (line 95) | private async Task GetIfFileExistsAsync(s... method GetIfFileExistsAsync (line 115) | private async Task GetIfFileExistsAsync(s... method Serialize (line 146) | private string Serialize(T item) method Deserialize (line 156) | private T Deserialize(string json) type StorageStrategies (line 161) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: BackgroundExecution/ForegroundApp/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadAsync (line 13) | public async Task> ReadAsync(string key) method WriteAsync (line 19) | public async Task WriteAsync(string key, List items) FILE: BackgroundExecution/ForegroundApp/Services/NavigationService/INavigatable.cs type INavigatable (line 6) | public interface INavigatable method OnNavigatedTo (line 8) | void OnNavigatedTo(string parameter, NavigationMode mode, Dictionary state, bool suspending); FILE: BackgroundExecution/ForegroundApp/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: BackgroundExecution/ForegroundApp/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: BackgroundExecution/ForegroundApp/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | void NavigateFrom(bool suspending) method NavigateTo (line 36) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODO */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: BackgroundExecution/ForegroundApp/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 13) | public class MainPageViewModel : Mvvm.ViewModelBase method MainPageViewModel (line 17) | public MainPageViewModel() method OnNavigatedTo (line 38) | public override async void OnNavigatedTo(string parameter, NavigationM... method OnNavigatedFrom (line 46) | public override void OnNavigatedFrom(Dictionary state,... method CanExecuteAddListCommand (line 61) | private bool CanExecuteAddListCommand() { return !Busy; } method ExecuteAddListCommand (line 62) | private void ExecuteAddListCommand() method CanExecuteRemoveListCommand (line 75) | private bool CanExecuteRemoveListCommand(ViewModels.TodoListViewModel ... method ExecuteRemoveListCommand (line 76) | private void ExecuteRemoveListCommand(ViewModels.TodoListViewModel list) method CanExecuteLoadCommand (line 89) | private bool CanExecuteLoadCommand() { return !Busy; } method ExecuteLoadCommand (line 90) | private async void ExecuteLoadCommand() method CanExecuteSaveCommand (line 108) | private bool CanExecuteSaveCommand() { return true; } method ExecuteSaveCommand (line 109) | private async void ExecuteSaveCommand() method CanExecuteUpdateBadgeCommand (line 126) | private bool CanExecuteUpdateBadgeCommand(string value) { return true; } method ExecuteUpdateBadgeCommand (line 127) | private async void ExecuteUpdateBadgeCommand(string value) method CanExecuteUpdateTileCommand (line 143) | private bool CanExecuteUpdateTileCommand(string value) { return true; } method ExecuteUpdateTileCommand (line 144) | private async void ExecuteUpdateTileCommand(string value) FILE: BackgroundExecution/ForegroundApp/ViewModels/TodoItemViewModel.cs class TodoItemViewModel (line 8) | public class TodoItemViewModel : Mvvm.ViewModelBase method TodoItemViewModel (line 10) | public TodoItemViewModel(Models.TodoItem todo) FILE: BackgroundExecution/ForegroundApp/ViewModels/TodoListViewModel.cs class TodoListViewModel (line 6) | public class TodoListViewModel : Mvvm.ViewModelBase method TodoListViewModel (line 10) | public TodoListViewModel(Models.TodoList list) method CanExecuteAddCommand (line 35) | private bool CanExecuteAddCommand(string title) { return true; } method ExecuteAddCommand (line 36) | private void ExecuteAddCommand(string title) method CanExecuteRemoveCommand (line 51) | private bool CanExecuteRemoveCommand(Models.TodoItem param) { return t... method ExecuteRemoveCommand (line 52) | private void ExecuteRemoveCommand(Models.TodoItem param) FILE: BackgroundExecution/ForegroundApp/Views/MainPage.xaml.cs class MainPage (line 8) | public sealed partial class MainPage : Page method MainPage (line 10) | public MainPage() method TodoItem_ItemClicked (line 20) | private async void TodoItem_ItemClicked(object sender, ItemClickEventA... method List_Tapped (line 26) | private async void List_Tapped(object sender, Windows.UI.Xaml.Input.Ta... method TextBox_KeyDown (line 36) | private void TextBox_KeyDown(object sender, Windows.UI.Xaml.Input.KeyR... FILE: Cortana/CortanaTodo.Background/VoiceCommandService.cs class VoiceCommandService (line 24) | public sealed class VoiceCommandService : IBackgroundTask method Disambiguate (line 64) | private async Task Disambiguate(IEnumerable items, Func FindItemAsync(TodoList list, string itemN... method FindListAsync (line 170) | private async Task FindListAsync(string listName, bool requi... method HandleAddToListAsync (line 220) | private async Task HandleAddToListAsync(string listName, string itemName) method HandleMarkItemCompleteAsync (line 263) | private async Task HandleMarkItemCompleteAsync(string listName, string... method HandleNewListAsync (line 306) | private async Task HandleNewListAsync(string listName) method ReportProgressAsync (line 343) | private async Task ReportProgressAsync(string message) method ReportCompleteAsync (line 361) | private async Task ReportCompleteAsync(string message) method RequestAppLaunchAsync (line 374) | private async Task RequestAppLaunchAsync() method Run (line 407) | public async void Run(IBackgroundTaskInstance taskInstance) method OnVoiceCommandCompleted (line 503) | private void OnVoiceCommandCompleted(VoiceCommandServiceConnection sen... method OnTaskCanceled (line 518) | private void OnTaskCanceled(IBackgroundTaskInstance sender, Background... FILE: Cortana/CortanaTodo.Shared/Models/BindableBase.cs class BindableBase (line 6) | public abstract class BindableBase : INotifyPropertyChanged method RaisePropertyChanged (line 10) | public void RaisePropertyChanged([CallerMemberName]string propertyName... method Set (line 15) | public bool Set(ref T storage, T value, [CallerMemberName()]string ... FILE: Cortana/CortanaTodo.Shared/Models/DataObject.cs class DataObject (line 15) | public class DataObject : ObservableObject FILE: Cortana/CortanaTodo.Shared/Models/TodoItem.cs class TodoItem (line 9) | public class TodoItem : DataObject FILE: Cortana/CortanaTodo.Shared/Models/TodoList.cs class TodoList (line 11) | public class TodoList : DataObject FILE: Cortana/CortanaTodo.Shared/Services/FileService/FileHelper.cs class FileHelper (line 10) | static public class FileHelper method FileExistsAsync (line 16) | static public async Task FileExistsAsync(string key, StorageStra... method FileExistsAsync (line 21) | static public async Task FileExistsAsync(string key, Windows.Sto... method DeleteFileAsync (line 29) | static public async Task DeleteFileAsync(string key, StorageStra... method ReadFileAsync (line 42) | static public async Task ReadFileAsync(string key, StorageStrate... method WriteFileAsync (line 68) | static public async Task WriteFileAsync(string key, T value, ... method CreateFileAsync (line 88) | static private async Task CreateFileAsync... method GetIfFileExistsAsync (line 104) | static private async Task GetIfFileExists... method GetIfFileExistsAsync (line 124) | static private async Task GetIfFileExists... method Serialize (line 155) | static private string Serialize(T item) method Deserialize (line 165) | static private T Deserialize(string json) type StorageStrategies (line 170) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: Cortana/CortanaTodo.Shared/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadListAsync (line 13) | public async Task> ReadListAsync(string key) method WriteListAsync (line 19) | public async Task WriteListAsync(string key, List items) FILE: Cortana/CortanaTodo.Shared/Services/TaskHelper.cs class TaskRunOptions (line 13) | public class TaskRunOptions method WithFailure (line 27) | static public TaskRunOptions WithFailure(string failureMessage) class TaskHelper (line 86) | static public class TaskHelper method DisplayErrorAsync (line 106) | static private async Task DisplayErrorAsync(Exception ex, TaskRunOptio... method RunWithErrorHandling (line 143) | static public async Task RunWithErrorHandling(Func taskFunction,... method RunWithErrorHandling (line 183) | static public async Task RunWithErrorHandling(Action action, TaskRunOp... FILE: Cortana/CortanaTodo.Shared/Services/TodoService.cs class TodoService (line 17) | public class TodoService method GetDefault (line 35) | static public TodoService GetDefault() method TodoService (line 57) | private TodoService() method DeleteAsync (line 73) | public async Task DeleteAsync(TodoList list) method LoadListsAsync (line 99) | public async Task> LoadListsAsync(bool ... method SaveAsync (line 172) | public async Task SaveAsync(TodoList list) method SaveAllAsync (line 196) | public async Task SaveAllAsync() method UpdatePhraseLists (line 212) | public async Task UpdatePhraseLists() FILE: Cortana/CortanaTodo/App.xaml.cs class App (line 12) | sealed partial class App : Template10.Common.BootStrapper method App (line 14) | public App() : base() method InstallVoiceCommandsAsync (line 28) | private async Task InstallVoiceCommandsAsync() method OnActivatedAsync (line 41) | public override async Task OnActivatedAsync(IActivatedEventArgs e) method OnLaunchedAsync (line 75) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: Cortana/CortanaTodo/Common/BootStrapper.cs class BootStrapper (line 17) | public abstract class BootStrapper : Application method BootStrapper (line 27) | public BootStrapper() method OnActivated (line 63) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 64) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 65) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 66) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 67) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 68) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 69) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 71) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 79) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 81) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 130) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 149) | public virtual Task OnInitializeAsync() { return Task.FromResult { } method FindRegistration (line 176) | static private WeakEvent FindRegistration(object source, string eventN... method VerifyDelegate (line 210) | static private void VerifyDelegate() where THandler : class method Subscribe (line 233) | static public void Subscribe(object source, string eventName... method Unsubscribe (line 273) | static public void Unsubscribe(object source, string eventNa... method WeakEvent (line 308) | private WeakEvent(object source, string eventName) : base(source, even... method FindSubscription (line 317) | private WeakSubscription FindSubscription(Delegate handler) method OnEventRaised (line 353) | protected override void OnEventRaised(params object[] parameters) method Subscribe (line 394) | private void Subscribe(Delegate handler) method Unsubscribe (line 412) | private void Unsubscribe(Delegate handler) FILE: Cortana/CortanaTodo/Mvvm/CommandCollection.cs type INamedCommand (line 14) | public interface INamedCommand : ICommand class CommandCollection (line 25) | public class CommandCollection : ObservableCollection method CommandCollection (line 32) | public CommandCollection() { } method CommandCollection (line 38) | public CommandCollection(IEnumerable collection) : base(coll... FILE: Cortana/CortanaTodo/Mvvm/CommandHelper.cs class CommandAttributeBase (line 15) | public abstract class CommandAttributeBase : Attribute method CommandAttributeBase (line 24) | public CommandAttributeBase(string commandName) class CommandAttribute (line 45) | [AttributeUsage(AttributeTargets.Method)] method CommandAttribute (line 55) | public CommandAttribute(string commandName) : base(commandName) { } class CommandCanExecuteAttribute (line 62) | [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] method CommandCanExecuteAttribute (line 72) | public CommandCanExecuteAttribute(string commandName) : base(commandNa... class CommandCanExecuteChangedAttribute (line 79) | [AttributeUsage(AttributeTargets.Property, AllowMultiple = true)] method CommandCanExecuteChangedAttribute (line 89) | public CommandCanExecuteChangedAttribute(string commandName) : base(co... class CommandHelper (line 96) | static public class CommandHelper method CreateCommands (line 111) | static public CommandCollection CreateCommands(object viewModel) FILE: Cortana/CortanaTodo/Mvvm/DynamicCommand.cs class DynamicCommand (line 17) | public class DynamicCommand : INamedCommand method ValidateCanExecuteMethod (line 27) | static private void ValidateCanExecuteMethod(MethodInfo canExecuteMethod) method ValidateExecuteMetod (line 45) | static private void ValidateExecuteMetod(MethodInfo executeMethod) method DynamicCommand (line 73) | public DynamicCommand(object commandSource, string name) method CommandSource_PropertyChanged (line 86) | private void CommandSource_PropertyChanged(object sender, PropertyChan... method AddCanExecuteProperty (line 103) | public void AddCanExecuteProperty(string propertyName) method CanExecute (line 150) | public bool CanExecute(object parameter) method Execute (line 173) | public void Execute(object parameter) method RaiseCanExecuteChanged (line 191) | public void RaiseCanExecuteChanged() method RemoveCanExecuteProperty (line 202) | public void RemoveCanExecuteProperty(string propertyName) FILE: Cortana/CortanaTodo/Mvvm/ViewModel.cs class ViewModel (line 22) | public abstract class ViewModel : VMBase, INavigationAware method ViewModel (line 28) | public ViewModel() method CreateCommands (line 42) | protected virtual void CreateCommands() method RunWithErrorHandling (line 61) | protected async Task RunWithErrorHandling(Func taskFunction, Tas... method RunWithErrorHandling (line 92) | protected async Task RunWithErrorHandling(Action action, TaskRunOption... method InitializeAsync (line 119) | protected virtual async Task InitializeAsync() method LoadDefaultDataAsync (line 141) | protected virtual Task LoadDefaultDataAsync() method LoadDesignData (line 153) | protected virtual void LoadDesignData() method ObtainServices (line 165) | protected virtual void ObtainServices() method OnNavigating (line 181) | public override void OnNavigating(object sender, NavigatingCancelEvent... method OnNavigated (line 194) | public override void OnNavigated(object sender, NavigationEventArgsEx e) FILE: Cortana/CortanaTodo/Mvvm/ViewModelBase.cs class ViewModelBase (line 12) | public abstract class ViewModelBase : BindableBase, INavigationAware, IL... method HandleResumeAsync (line 14) | public virtual Task HandleResumeAsync(object e) method HandleSuspendAsync (line 20) | public virtual Task HandleSuspendAsync(SuspendingEventArgs e) method OnNavigating (line 26) | public virtual void OnNavigating(object sender, NavigatingCancelEventA... method OnNavigated (line 28) | public virtual void OnNavigated(object sender, NavigationEventArgsEx e... FILE: Cortana/CortanaTodo/Services/Lifecycle/ILifecycleAware.cs type ILifecycleAware (line 10) | public interface ILifecycleAware method HandleResumeAsync (line 21) | Task HandleResumeAsync(object e); method HandleSuspendAsync (line 32) | Task HandleSuspendAsync(SuspendingEventArgs e); FILE: Cortana/CortanaTodo/Services/NavigationService/INavigationAware.cs type INavigationAware (line 6) | public interface INavigationAware method OnNavigating (line 8) | void OnNavigating(object sender, NavigatingCancelEventArgs e); method OnNavigated (line 9) | void OnNavigated(object sender, NavigationEventArgsEx e); FILE: Cortana/CortanaTodo/Services/NavigationService/NavigationEventArgsEx.cs class NavigationEventArgsEx (line 10) | public class NavigationEventArgsEx : EventArgs method NavigationEventArgsEx (line 12) | public NavigationEventArgsEx() method NavigationEventArgsEx (line 17) | public NavigationEventArgsEx(NavigationEventArgs e) FILE: Cortana/CortanaTodo/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, NavigationEventArgs e) method FacadeNavigatingCancelEventHandler (line 128) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: Cortana/CortanaTodo/Services/NavigationService/NavigationService.cs class NavigationService (line 11) | public class NavigationService : ILifecycleAware method NavigationService (line 29) | public NavigationService(Frame frame) method OnNavigating (line 40) | private void OnNavigating(object sender, NavigatingCancelEventArgs e) method OnNavigated (line 53) | private void OnNavigated(object sender, NavigationEventArgsEx e) method HandleResumeAsync (line 76) | Task ILifecycleAware.HandleResumeAsync(object e) method HandleSuspendAsync (line 92) | Task ILifecycleAware.HandleSuspendAsync(SuspendingEventArgs e) method Navigate (line 108) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 118) | public void RestoreSavedNavigation() { /* TODO */ } method GoBack (line 120) | public void GoBack() { if (frame.CanGoBack) frame.GoBack(); } method GoForward (line 124) | public void GoForward() { frame.GoForward(); } method ClearHistory (line 128) | public void ClearHistory() { frame.SetNavigationState(EmptyNavigation); } method Show (line 131) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: Cortana/CortanaTodo/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 20) | public class MainPageViewModel : ViewModel class CommandNames (line 23) | static public class CommandNames method ItemCommandsEnabled (line 44) | [CommandCanExecute(CommandNames.DeleteItem)] method ListCommandsEnabled (line 56) | [CommandCanExecute(CommandNames.AddItem)] method HandleSuspendAsync (line 66) | public override async Task HandleSuspendAsync(SuspendingEventArgs e) method LoadDefaultDataAsync (line 72) | protected override Task LoadDefaultDataAsync() method LoadDesignData (line 90) | protected override void LoadDesignData() method ObtainServices (line 121) | protected override void ObtainServices() method OnNavigated (line 127) | public override void OnNavigated(object sender, NavigationEventArgsEx e) method AddItem (line 154) | [Command(CommandNames.AddItem)] method AddList (line 172) | [Command(CommandNames.AddList)] method DeleteItemAsync (line 194) | [Command(CommandNames.DeleteItem)] method DeleteListAsync (line 228) | [Command(CommandNames.DeleteList)] method SaveListAsync (line 261) | [Command(CommandNames.SaveList)] FILE: Cortana/CortanaTodo/Views/MainPage.xaml.cs class MainPage (line 6) | public sealed partial class MainPage : Page method MainPage (line 8) | public MainPage() method TodoItem_ItemClicked (line 13) | private void TodoItem_ItemClicked(object sender, ItemClickEventArgs e) FILE: DragAndDropSample/DragAndDropSample/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 36) | public App() method OnLaunched (line 49) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 95) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 107) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: DragAndDropSample/DragAndDropSample/MainPage.xaml.cs class MainPage (line 16) | public sealed partial class MainPage : Page method MainPage (line 18) | public MainPage() method UpdateOutput (line 23) | async private void UpdateOutput(DragEventArgs e) method ClearOutput (line 100) | private void ClearOutput() method Move_DragOver (line 115) | private void Move_DragOver(object sender, DragEventArgs e) method Copy_DragOver (line 121) | private void Copy_DragOver(object sender, DragEventArgs e) method Link_DragOver (line 127) | private void Link_DragOver(object sender, DragEventArgs e) method None_DragOver (line 133) | private void None_DragOver(object sender, DragEventArgs e) method RemoveDecoration_DragOver (line 139) | private void RemoveDecoration_DragOver(object sender, DragEventArgs e) method ApplyDecoration_DragOver (line 147) | private void ApplyDecoration_DragOver(object sender, DragEventArgs e) method Custom_DragOver (line 155) | private void Custom_DragOver(object sender, DragEventArgs e) method ApplyCustomText_DragOver (line 163) | private void ApplyCustomText_DragOver(object sender, DragEventArgs e) method Clear_DragLeave (line 172) | private void Clear_DragLeave(object sender, DragEventArgs e) method DragImage_DragStarting (line 177) | async private void DragImage_DragStarting(UIElement sender, DragStarti... method DragText_DragStarting (line 196) | private void DragText_DragStarting(UIElement sender, DragStartingEvent... method SetRequestedOperation (line 203) | private DataPackageOperation SetRequestedOperation() method DragTriggerDetection_Checked (line 223) | private void DragTriggerDetection_Checked(object sender, RoutedEventAr... method DragImage_PointerPressed (line 255) | private void DragImage_PointerPressed(object sender, PointerRoutedEven... method DragImage_PointerReleased (line 264) | private void DragImage_PointerReleased(object sender, PointerRoutedEve... method DragImage_PointerMoved (line 269) | private async void DragImage_PointerMoved(object sender, PointerRouted... method DragText_PointerPressed (line 284) | private void DragText_PointerPressed(object sender, PointerRoutedEvent... method DragText_PointerReleased (line 293) | private void DragText_PointerReleased(object sender, PointerRoutedEven... method DragText_PointerMoved (line 298) | private async void DragText_PointerMoved(object sender, PointerRoutedE... FILE: HelloWorld/HelloWorld/Services/AdService/AdHelper.cs class AdHelper (line 8) | public class AdHelper method AdHelper (line 14) | public AdHelper(string applicationId, string adUnitId) method Preload (line 32) | public void Preload(bool show = false) method Show (line 39) | public void Show() FILE: HelloWorld/HelloWorld/Services/AdService/AdService.cs class AdService (line 9) | class AdService method AdService (line 13) | public AdService() method Show (line 27) | public void Show() FILE: HelloWorld/HelloWorld/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 12) | public class MainPageViewModel : Mvvm.ViewModelBase method MainPageViewModel (line 16) | public MainPageViewModel() method OnNavigatedTo (line 39) | public override void OnNavigatedTo(string parameter, NavigationMode mo... method OnNavigatedFrom (line 44) | public override void OnNavigatedFrom(Dictionary state,... method CanExecuteAddListCommand (line 62) | private bool CanExecuteAddListCommand() { return !Busy; } method ExecuteAddListCommand (line 63) | private void ExecuteAddListCommand() method CanExecuteRemoveListCommand (line 76) | private bool CanExecuteRemoveListCommand(ViewModels.TodoListViewModel ... method ExecuteRemoveListCommand (line 77) | private void ExecuteRemoveListCommand(ViewModels.TodoListViewModel list) method CanExecuteLoadCommand (line 90) | private bool CanExecuteLoadCommand() { return !Busy; } method ExecuteLoadCommand (line 91) | private async void ExecuteLoadCommand() method CanExecuteSaveCommand (line 109) | private bool CanExecuteSaveCommand() { return true; } method ExecuteSaveCommand (line 110) | private async void ExecuteSaveCommand() method CanExecuteRemoveAdsCommand (line 127) | private bool CanExecuteRemoveAdsCommand() { return !Busy && ShowAd; } method ExecuteRemoveAdsCommand (line 128) | private async void ExecuteRemoveAdsCommand() method CanExecuteShowVideoAdCommand (line 141) | private bool CanExecuteShowVideoAdCommand() { return !Busy; } method ExecuteShowVideoAdCommand (line 142) | private void ExecuteShowVideoAdCommand() FILE: HttpClient WireSerialization/NorthwindService/Category.cs class Category (line 15) | public partial class Category method Category (line 17) | public Category() FILE: HttpClient WireSerialization/NorthwindService/Customer.cs class Customer (line 15) | public partial class Customer method Customer (line 17) | public Customer() FILE: HttpClient WireSerialization/NorthwindService/Employee.cs class Employee (line 15) | public partial class Employee method Employee (line 17) | public Employee() FILE: HttpClient WireSerialization/NorthwindService/Northwind.Context.cs class NorthwindEntities (line 16) | public partial class NorthwindEntities : DbContext method NorthwindEntities (line 18) | public NorthwindEntities() method OnModelCreating (line 23) | protected override void OnModelCreating(DbModelBuilder modelBuilder) FILE: HttpClient WireSerialization/NorthwindService/Northwind.svc.cs class Northwind (line 18) | public class Northwind : DataService< NorthwindEntities > method InitializeService (line 21) | public static void InitializeService(DataServiceConfiguration config) method GetSuppliersLite (line 29) | private string GetSuppliersLite() method GetSuppliersLiteZip (line 82) | [WebGet] method Zip (line 88) | private string Zip(string value) FILE: HttpClient WireSerialization/NorthwindService/Order.cs class Order (line 15) | public partial class Order method Order (line 17) | public Order() FILE: HttpClient WireSerialization/NorthwindService/Order_Detail.cs class Order_Detail (line 15) | public partial class Order_Detail FILE: HttpClient WireSerialization/NorthwindService/Product.cs class Product (line 15) | public partial class Product method Product (line 17) | public Product() FILE: HttpClient WireSerialization/NorthwindService/Shipper.cs class Shipper (line 15) | public partial class Shipper method Shipper (line 17) | public Shipper() FILE: HttpClient WireSerialization/NorthwindService/Supplier.cs class Supplier (line 15) | public partial class Supplier method Supplier (line 17) | public Supplier() FILE: HttpClient WireSerialization/UWPclient/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 36) | public App() method OnLaunched (line 49) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 95) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 107) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: HttpClient WireSerialization/UWPclient/MainPage.xaml.cs class MainPage (line 15) | public sealed partial class MainPage : Page method MainPage (line 17) | public MainPage() method button2_Click (line 23) | private async void button2_Click(object sender, RoutedEventArgs e) method button3_Click (line 33) | private async void button3_Click(object sender, RoutedEventArgs e) method button4_Click (line 44) | private async void button4_Click(object sender, RoutedEventArgs e) method button5_Click (line 55) | private async void button5_Click(object sender, RoutedEventArgs e) FILE: KeepTheKeys/KeepTheKeys/App.xaml.cs class App (line 14) | public sealed partial class App : Application method App (line 22) | public App() method App_BackRequested (line 33) | private void App_BackRequested(object sender, Windows.UI.Core.BackRequ... method OnLaunched (line 68) | protected override void OnLaunched(LaunchActivatedEventArgs e) method RootFrame_FirstNavigated (line 134) | private void RootFrame_FirstNavigated(object sender, NavigationEventAr... method OnSuspending (line 148) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: KeepTheKeys/KeepTheKeys/DevicePage.xaml.cs class DevicePage (line 10) | public sealed partial class DevicePage : Page method DevicePage (line 12) | public DevicePage() method OnNavigatedTo (line 17) | protected override void OnNavigatedTo(NavigationEventArgs e) FILE: KeepTheKeys/KeepTheKeys/MainPage.xaml.cs class MainPage (line 20) | public sealed partial class MainPage : Page method MainPage (line 24) | public MainPage() method OnNavigatedTo (line 37) | protected override async void OnNavigatedTo(NavigationEventArgs e) method deviceListBox_SelectionChanged (line 77) | private void deviceListBox_SelectionChanged(object sender, SelectionCh... FILE: KeepTheKeys/KeepTheKeys/RadioButtonValueConverter.cs class RadioButtonValueConverter (line 12) | public class RadioButtonValueConverter : Windows.UI.Xaml.Data.... method Convert (line 16) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 24) | public object ConvertBack(object value, Type targetType, object parame... class AlertLevelRadioButtonValueConverter (line 36) | public class AlertLevelRadioButtonValueConverter : RadioButtonValueConve... FILE: KeepTheKeys/KeepTheKeysBackground/KeyFobTask.cs class KeyFobTask (line 19) | public sealed class KeyFobTask : IBackgroundTask method Run (line 21) | public async void Run(Windows.ApplicationModel.Background.IBackgroundT... FILE: KeepTheKeys/KeepTheKeysCommon/AlertLevel.cs type AlertLevel (line 5) | public enum AlertLevel : byte FILE: KeepTheKeys/KeepTheKeysCommon/KeyFob.cs class KeyFob (line 21) | public class KeyFob method KeyFob (line 76) | public KeyFob(BluetoothLEDevice device) method SaveSettings (line 104) | private async void SaveSettings() method SetAlertLevelCharacteristic (line 136) | public async Task SetAlertLevelCharacteristic() method ToString (line 157) | public override string ToString() FILE: LaunchForResultsDemo/LaunchForResultsDemo/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 31) | public App() method OnLaunched (line 42) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 90) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 102) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: LaunchForResultsDemo/LaunchForResultsDemo/Common/NavigationHelper.cs class NavigationHelper (line 59) | [Windows.Foundation.Metadata.WebHostHidden] method NavigationHelper (line 71) | public NavigationHelper(Page page) method CanGoBack (line 167) | public virtual bool CanGoBack() method CanGoForward (line 179) | public virtual bool CanGoForward() method GoBack (line 188) | public virtual void GoBack() method GoForward (line 196) | public virtual void GoForward() method App_BackRequested (line 207) | private void App_BackRequested(object sender, BackRequestedEventArgs e) method CoreDispatcher_AcceleratorKeyActivated (line 223) | private void CoreDispatcher_AcceleratorKeyActivated(CoreDispatcher sen... method CoreWindow_PointerPressed (line 267) | private void CoreWindow_PointerPressed(CoreWindow sender, method OnNavigatedTo (line 315) | public void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 357) | public void OnNavigatedFrom(NavigationEventArgs e) class LoadStateEventArgs (line 383) | public class LoadStateEventArgs : EventArgs method LoadStateEventArgs (line 407) | public LoadStateEventArgs(Object navigationParameter, Dictionary pageState) FILE: LaunchForResultsDemo/LaunchForResultsDemo/Common/ObservableDictionary.cs class ObservableDictionary (line 12) | public class ObservableDictionary : IObservableMap class ObservableDictionaryChangedEventArgs (line 14) | private class ObservableDictionaryChangedEventArgs : IMapChangedEventA... method ObservableDictionaryChangedEventArgs (line 16) | public ObservableDictionaryChangedEventArgs(CollectionChange change,... method InvokeMapChanged (line 29) | private void InvokeMapChanged(CollectionChange change, string key) method Add (line 38) | public void Add(string key, object value) method Add (line 44) | public void Add(KeyValuePair item) method Remove (line 49) | public bool Remove(string key) method Remove (line 59) | public bool Remove(KeyValuePair item) method Clear (line 84) | public void Clear() method ContainsKey (line 99) | public bool ContainsKey(string key) method TryGetValue (line 104) | public bool TryGetValue(string key, out object value) method Contains (line 114) | public bool Contains(KeyValuePair item) method GetEnumerator (line 129) | public IEnumerator> GetEnumerator() method GetEnumerator (line 134) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... method CopyTo (line 139) | public void CopyTo(KeyValuePair[] array, int arrayIndex) FILE: LaunchForResultsDemo/LaunchForResultsDemo/Common/RelayCommand.cs class RelayCommand (line 17) | public class RelayCommand : ICommand method RelayCommand (line 31) | public RelayCommand(Action execute) method RelayCommand (line 41) | public RelayCommand(Action execute, Func canExecute) method CanExecute (line 56) | public bool CanExecute(object parameter) method Execute (line 67) | public void Execute(object parameter) method RaiseCanExecuteChanged (line 77) | public void RaiseCanExecuteChanged() FILE: LaunchForResultsDemo/LaunchForResultsDemo/Common/SuspensionManager.cs class SuspensionManager (line 23) | internal sealed class SuspensionManager method SaveAsync (line 58) | public static async Task SaveAsync() method RestoreAsync (line 103) | public static async Task RestoreAsync(String sessionBaseKey = null) method RegisterFrame (line 157) | public static void RegisterFrame(Frame frame, String sessionStateKey, ... method UnregisterFrame (line 191) | public static void UnregisterFrame(Frame frame) method SessionStateForFrame (line 216) | public static Dictionary SessionStateForFrame(Frame fr... method RestoreFrameNavigationState (line 242) | private static void RestoreFrameNavigationState(Frame frame) method SaveFrameNavigationState (line 251) | private static void SaveFrameNavigationState(Frame frame) class SuspensionManagerException (line 257) | public class SuspensionManagerException : Exception method SuspensionManagerException (line 259) | public SuspensionManagerException() method SuspensionManagerException (line 263) | public SuspensionManagerException(Exception e) FILE: LaunchForResultsDemo/LaunchForResultsDemo/ContinuationPage.xaml.cs class ContinuationPage (line 25) | public sealed partial class ContinuationPage : Page method ContinuationPage (line 40) | public ContinuationPage() method navigationHelper_LoadState (line 59) | private void navigationHelper_LoadState(object sender, LoadStateEventA... method navigationHelper_SaveState (line 81) | private void navigationHelper_SaveState(object sender, SaveStateEventA... method OnNavigatedTo (line 96) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 101) | protected override void OnNavigatedFrom(NavigationEventArgs e) FILE: LaunchForResultsDemo/LaunchForResultsDemo/MainPage.xaml.cs class MainPage (line 24) | public sealed partial class MainPage : Page method MainPage (line 26) | public MainPage() method LaunchForResultButton_Click (line 31) | private async void LaunchForResultButton_Click(object sender, RoutedEv... FILE: LaunchForResultsDemo/LaunchTargetDemoApp/App.xaml.cs class App (line 15) | sealed partial class App : Application method App (line 21) | public App() method OnActivated (line 27) | protected override void OnActivated(IActivatedEventArgs args) method OnLaunched (line 70) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 118) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 130) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: LaunchForResultsDemo/LaunchTargetDemoApp/LaunchTargetPage.xaml.cs class LaunchTargetPage (line 24) | public sealed partial class LaunchTargetPage : Page method LaunchTargetPage (line 28) | public LaunchTargetPage() method SendResults_Click (line 41) | private void SendResults_Click(object sender, RoutedEventArgs e) FILE: LaunchForResultsDemo/LaunchTargetDemoApp/MainPage.xaml.cs class MainPage (line 24) | public sealed partial class MainPage : Page method MainPage (line 26) | public MainPage() FILE: LaunchForResultsShoppingDemo/CheckOut/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 31) | public App() method OnLaunched (line 42) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnActivated (line 85) | protected override void OnActivated(IActivatedEventArgs args) method OnNavigationFailed (line 115) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 127) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: LaunchForResultsShoppingDemo/CheckOut/MainPage.xaml.cs class MainPage (line 7) | public sealed partial class MainPage : Page method MainPage (line 9) | public MainPage() FILE: LaunchForResultsShoppingDemo/CheckOut/MakePayment.xaml.cs class MakePayment (line 15) | public sealed partial class MakePayment : Page method MakePayment (line 26) | public MakePayment() method OnNavigatedTo (line 39) | protected override void OnNavigatedTo(NavigationEventArgs e) method CancelClicked (line 83) | private void CancelClicked(object sender, Windows.UI.Xaml.RoutedEventA... method MakePaymentClicked (line 92) | private void MakePaymentClicked(object sender, Windows.UI.Xaml.RoutedE... FILE: LaunchForResultsShoppingDemo/CheckOut/Models/Item.cs class Item (line 4) | public class Item FILE: LaunchForResultsShoppingDemo/Shop/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 31) | public App() method OnLaunched (line 42) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 90) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 102) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: LaunchForResultsShoppingDemo/Shop/MainPage.xaml.cs class MainPage (line 8) | public sealed partial class MainPage : Page method MainPage (line 10) | public MainPage() method OnNavigatedTo (line 15) | protected override void OnNavigatedTo(NavigationEventArgs e) FILE: LaunchForResultsShoppingDemo/Shop/Receipt.xaml.cs class Receipt (line 9) | public sealed partial class Receipt : Page method Receipt (line 11) | public Receipt() method OnNavigatedTo (line 21) | protected override void OnNavigatedTo(NavigationEventArgs e) method HomeClicked (line 66) | private void HomeClicked(object sender, RoutedEventArgs e) FILE: LaunchForResultsShoppingDemo/Shop/ViewModels/CanNotifyPropertyChanged.cs class CanNotifyPropertyChanged (line 11) | public class CanNotifyPropertyChanged : INotifyPropertyChanged method SetProperty (line 15) | public bool SetProperty(ref T storage, T value, [CallerMemberName] ... method RaisePropertyChanged (line 30) | protected void RaisePropertyChanged(Expression> propertyExp... method RaiseAllPropertyChanged (line 35) | protected void RaiseAllPropertyChanged() method OnPropertyChanged (line 40) | protected async virtual void OnPropertyChanged([CallerMemberName] stri... method PropertyName (line 54) | private static string PropertyName(Expression> propertyExpr... FILE: LaunchForResultsShoppingDemo/Shop/ViewModels/Command.cs class Command (line 7) | public class Command : ICommand method Command (line 17) | public Command(Action executeAction) : this(executeAction, (Func... method Command (line 21) | public Command(Action executeParameterizedAction) : this(execu... method Command (line 25) | public Command(Action executeAction, Func canExecute) method Command (line 36) | public Command(Action executeAction, Func canExecute) method Command (line 48) | public Command(Action executeAction, Func canExe... method CanExecute (line 61) | public bool CanExecute(object parameter) method RaiseCanExecuteChanged (line 78) | public void RaiseCanExecuteChanged() method Execute (line 87) | public void Execute(object parameter) FILE: LaunchForResultsShoppingDemo/Shop/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 12) | class MainPageViewModel : CanNotifyPropertyChanged method MainPageViewModel (line 19) | public MainPageViewModel() method CreateSampleProducts (line 41) | private void CreateSampleProducts() method AddProduct (line 54) | private void AddProduct(string name, double price) method CanCheckOut (line 59) | private bool CanCheckOut() method CheckOut (line 64) | private async Task CheckOut() FILE: LaunchForResultsShoppingDemo/Shop/ViewModels/Product.cs class Product (line 5) | public class Product : CanNotifyPropertyChanged method Product (line 12) | public Product(Action OnSelectionChangedAction = null) FILE: LaunchForResultsShoppingDemo/Shop/ViewModels/ViewModelLocator.cs class ViewModelLocator (line 4) | class ViewModelLocator FILE: MapsDrawingShapes/DrawingShapes/App.xaml.cs class App (line 26) | public sealed partial class App : Application method App (line 33) | public App() method OnLaunched (line 46) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnSuspending (line 98) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: MapsDrawingShapes/DrawingShapes/MainPage.xaml.cs class MainPage (line 23) | public sealed partial class MainPage : Page method MainPage (line 25) | public MainPage() method OnNavigatedTo (line 37) | protected override void OnNavigatedTo(NavigationEventArgs e) method DrawLines (line 45) | private void DrawLines(object sender, RoutedEventArgs e) method DrawShapes (line 72) | private void DrawShapes(object sender, RoutedEventArgs e) method DrawPoints (line 99) | private void DrawPoints(object sender, RoutedEventArgs e) method DeleteAll (line 131) | private void DeleteAll(object sender, RoutedEventArgs e) method DeleteShapesFromLevel (line 136) | private bool DeleteShapesFromLevel(int zIndex) method MyMap_MapTapped (line 152) | private async void MyMap_MapTapped(MapControl sender, MapInputEventArg... method ZoomOut (line 166) | private void ZoomOut(object sender, RoutedEventArgs e) method ZoomIn (line 173) | private void ZoomIn(object sender, RoutedEventArgs e) FILE: MapsDrawingShapes/DrawingShapes/MapElementData.cs class MapElementData (line 14) | public static class MapElementData method GetObjectData (line 23) | public static object GetObjectData(DependencyObject obj) method SetObjectData (line 28) | public static void SetObjectData( method AddData (line 36) | public static void AddData(this DependencyObject element, object data) method ReadData (line 41) | public static T ReadData(this DependencyObject element) where T : c... FILE: MapsDrawingShapes/DrawingShapes/MapExtensions.cs class MapExtensions (line 16) | public static class MapExtensions method GetViewArea (line 18) | public static GeoboundingBox GetViewArea(this MapControl map) method SetViewArea (line 26) | public static void SetViewArea(this MapControl map, Geopoint p1, Geopo... FILE: MapsDrawingShapes/DrawingShapes/PointList.cs class PointList (line 11) | public class PointList method PointList (line 13) | public PointList() method GetLines (line 21) | public static IEnumerable GetLines() method GetAreas (line 50) | public static IEnumerable GetAreas() method GetRandomPoints (line 85) | public static IEnumerable GetRandomPoints(Geopoint point1, ... FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/AboutPage.xaml.cs class AboutPage (line 23) | public sealed partial class AboutPage : Page method AboutPage (line 45) | public AboutPage() method navigationHelper_LoadState (line 64) | private void navigationHelper_LoadState(object sender, LoadStateEventA... method OnNavigatedTo (line 84) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 89) | protected override void OnNavigatedFrom(NavigationEventArgs e) FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/App.xaml.cs class App (line 26) | sealed partial class App : Application method App (line 32) | public App() method HardwareButtons_BackPressed (line 38) | private void HardwareButtons_BackPressed(object sender, BackPressedEve... method OnLaunched (line 60) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnActivated (line 95) | protected override void OnActivated(IActivatedEventArgs args) method OnSuspending (line 142) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/Common/NavigationHelper.cs class NavigationHelper (line 59) | [Windows.Foundation.Metadata.WebHostHidden] method NavigationHelper (line 71) | public NavigationHelper(Page page) method CanGoBack (line 161) | public virtual bool CanGoBack() method CanGoForward (line 173) | public virtual bool CanGoForward() method GoBack (line 182) | public virtual void GoBack() method GoForward (line 190) | public virtual void GoForward() method CoreDispatcher_AcceleratorKeyActivated (line 202) | private void CoreDispatcher_AcceleratorKeyActivated(CoreDispatcher sen... method CoreWindow_PointerPressed (line 246) | private void CoreWindow_PointerPressed(CoreWindow sender, method OnNavigatedTo (line 293) | public void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 335) | public void OnNavigatedFrom(NavigationEventArgs e) class LoadStateEventArgs (line 361) | public class LoadStateEventArgs : EventArgs method LoadStateEventArgs (line 385) | public LoadStateEventArgs(Object navigationParameter, Dictionary pageState) FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/Common/ObservableDictionary.cs class ObservableDictionary (line 12) | public class ObservableDictionary : IObservableMap class ObservableDictionaryChangedEventArgs (line 14) | private class ObservableDictionaryChangedEventArgs : IMapChangedEventA... method ObservableDictionaryChangedEventArgs (line 16) | public ObservableDictionaryChangedEventArgs(CollectionChange change,... method InvokeMapChanged (line 29) | private void InvokeMapChanged(CollectionChange change, string key) method Add (line 38) | public void Add(string key, object value) method Add (line 44) | public void Add(KeyValuePair item) method Remove (line 49) | public bool Remove(string key) method Remove (line 59) | public bool Remove(KeyValuePair item) method Clear (line 84) | public void Clear() method ContainsKey (line 99) | public bool ContainsKey(string key) method TryGetValue (line 104) | public bool TryGetValue(string key, out object value) method Contains (line 114) | public bool Contains(KeyValuePair item) method GetEnumerator (line 129) | public IEnumerator> GetEnumerator() method GetEnumerator (line 134) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... method CopyTo (line 139) | public void CopyTo(KeyValuePair[] array, int arrayIndex) FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/Common/RelayCommand.cs class RelayCommand (line 17) | public class RelayCommand : ICommand method RelayCommand (line 31) | public RelayCommand(Action execute) method RelayCommand (line 41) | public RelayCommand(Action execute, Func canExecute) method CanExecute (line 56) | public bool CanExecute(object parameter) method Execute (line 67) | public void Execute(object parameter) method RaiseCanExecuteChanged (line 77) | public void RaiseCanExecuteChanged() FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/Common/SuspensionManager.cs class SuspensionManager (line 23) | internal sealed class SuspensionManager method SaveAsync (line 58) | public static async Task SaveAsync() method RestoreAsync (line 101) | public static async Task RestoreAsync() method RegisterFrame (line 151) | public static void RegisterFrame(Frame frame, String sessionStateKey) method UnregisterFrame (line 179) | public static void UnregisterFrame(Frame frame) method SessionStateForFrame (line 204) | public static Dictionary SessionStateForFrame(Frame fr... method RestoreFrameNavigationState (line 230) | private static void RestoreFrameNavigationState(Frame frame) method SaveFrameNavigationState (line 239) | private static void SaveFrameNavigationState(Frame frame) class SuspensionManagerException (line 245) | public class SuspensionManagerException : Exception method SuspensionManagerException (line 247) | public SuspensionManagerException() method SuspensionManagerException (line 251) | public SuspensionManagerException(Exception e) FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/Converters/ImageSourceToStringConverter.cs class ImageSourceToStringConverter (line 10) | public class ImageSourceToStringConverter : IValueConverter method Convert (line 12) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 21) | public object ConvertBack(object value, Type targetType, object parame... FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/Converters/UserImagesDisplayConverter.cs class UserImagesDisplayConverter (line 12) | public class UserImagesDisplayConverter : IValueConverter method Convert (line 14) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 29) | public object ConvertBack(object value, Type targetType, object parame... FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/DataModel/BindableBase.cs class BindableBase (line 27) | [Windows.Foundation.Metadata.WebHostHidden] method SetProperty (line 47) | protected bool SetProperty(ref T storage, T value, [CallerMemberNam... method OnPropertyChanged (line 62) | protected void OnPropertyChanged([CallerMemberName] string propertyNam... FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/DataModel/RecipeDataSource.cs class RecipeDataCommon (line 42) | [Windows.Foundation.Metadata.WebHostHidden] method RecipeDataCommon (line 47) | public RecipeDataCommon(String uniqueId, String title, String shortTit... method SetImage (line 105) | public void SetImage(String path) method GetImageUri (line 112) | public string GetImageUri() class UserPhotoDataItem (line 121) | public class UserPhotoDataItem : RecipeDataCommon method UserPhotoDataItem (line 125) | public UserPhotoDataItem() class RecipeDataItem (line 134) | public class RecipeDataItem : RecipeDataCommon method RecipeDataItem (line 136) | public RecipeDataItem() method RecipeDataItem (line 143) | public RecipeDataItem(String uniqueId, String title, String shortTitle... method SetTileImage (line 214) | public void SetTileImage(String path) class RecipeDataGroup (line 225) | public class RecipeDataGroup : RecipeDataCommon method RecipeDataGroup (line 227) | public RecipeDataGroup() method RecipeDataGroup (line 232) | public RecipeDataGroup(String uniqueId, String title, String shortTitl... method SetGroupImage (line 290) | public void SetGroupImage(String path) class RecipeDataSource (line 301) | public sealed class RecipeDataSource method GetGroupsAsync (line 313) | public static async Task> GetGroupsAsync(... method GetGroupAsync (line 321) | public static async Task GetGroupAsync(string uniqueId) method GetItemAsync (line 330) | public static async Task GetItemAsync(string uniqueId) method EnsureRecipeDataLoaded (line 339) | private static async Task EnsureRecipeDataLoaded() method LoadLocalDataAsync (line 347) | public async Task LoadLocalDataAsync() method CreateRecipesAndRecipeGroups (line 360) | private static void CreateRecipesAndRecipeGroups(JsonArray array) method CreateRecipeGroup (line 424) | private static RecipeDataGroup CreateRecipeGroup(JsonObject obj) FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/DataModel/SampleDataSource.cs class SampleDataCommon (line 43) | [Windows.Foundation.Metadata.WebHostHidden] method SampleDataCommon (line 48) | public SampleDataCommon(String uniqueId, String title, String subtitle... method SetImage (line 105) | public void SetImage(String path) class SampleDataItem (line 116) | public class SampleDataItem : SampleDataCommon method SampleDataItem (line 118) | public SampleDataItem(String uniqueId, String title, String subtitle, ... class SampleDataGroup (line 167) | public class SampleDataGroup : SampleDataCommon method SampleDataGroup (line 169) | public SampleDataGroup(String uniqueId, String title, String subtitle,... class SampleDataSource (line 196) | public sealed class SampleDataSource method GetGroups (line 206) | public static IEnumerable GetGroups(string uniqueId) method GetGroup (line 213) | public static SampleDataGroup GetGroup(string uniqueId) method GetItem (line 221) | public static SampleDataItem GetItem(string uniqueId) method SampleDataSource (line 229) | public SampleDataSource() FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/GroupDetailPage.xaml.cs class GroupDetailPage (line 26) | public sealed partial class GroupDetailPage : Page method GroupDetailPage (line 48) | public GroupDetailPage() method navigationHelper_LoadState (line 69) | private async void navigationHelper_LoadState(object sender, LoadState... method OnNavigatedTo (line 89) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 94) | protected override void OnNavigatedFrom(NavigationEventArgs e) method lstRecipes_SelectionChanged (line 101) | private void lstRecipes_SelectionChanged(object sender, SelectionChang... FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/MainPage.xaml.cs class MainPage (line 24) | public sealed partial class MainPage : Page method MainPage (line 46) | public MainPage() method navigationHelper_LoadState (line 65) | private async void navigationHelper_LoadState(object sender, LoadState... method OnNavigatedTo (line 85) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 90) | protected override void OnNavigatedFrom(NavigationEventArgs e) method About_Click (line 97) | private void About_Click(object sender, RoutedEventArgs e) method lstGroups_SelectionChanged (line 102) | private void lstGroups_SelectionChanged(object sender, SelectionChange... FILE: MigrationDemo/Begin/ContosoCookbook/ContosoCookbook/RecipeDetailPage.xaml.cs class RecipeDetailPage (line 34) | public sealed partial class RecipeDetailPage : Page method RecipeDetailPage (line 73) | public RecipeDetailPage() method navigationHelper_LoadState (line 94) | private async void navigationHelper_LoadState(object sender, LoadState... method OnShareDataRequested (line 107) | private async void OnShareDataRequested(DataTransferManager sender, Da... method OnNavigatedTo (line 152) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 157) | protected override void OnNavigatedFrom(NavigationEventArgs e) method btnPinToStart_Click (line 164) | private async void btnPinToStart_Click(object sender, RoutedEventArgs e) method btnReminderTimer_Click (line 190) | private async void btnReminderTimer_Click(object sender, RoutedEventAr... method btnShare_Click (line 213) | private void btnShare_Click(object sender, RoutedEventArgs e) method btnPhoto_Click (line 225) | private void btnPhoto_Click(object sender, RoutedEventArgs e) method FileOpenPicker_Continuation (line 241) | private async void FileOpenPicker_Continuation(StorageFile file) FILE: MigrationDemo/Controls/BackButton.xaml.cs class BackButton (line 24) | public sealed partial class BackButton : UserControl method BackButton (line 26) | public BackButton() method BackButton_Loaded (line 35) | private void BackButton_Loaded(object sender, RoutedEventArgs e) method CalculateOnCanvasBackVisibility (line 45) | private Visibility CalculateOnCanvasBackVisibility() FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/AboutPage.xaml.cs class AboutPage (line 23) | public sealed partial class AboutPage : Page method AboutPage (line 45) | public AboutPage() method navigationHelper_LoadState (line 64) | private void navigationHelper_LoadState(object sender, LoadStateEventA... method OnNavigatedTo (line 84) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 89) | protected override void OnNavigatedFrom(NavigationEventArgs e) FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/App.xaml.cs class App (line 26) | sealed partial class App : Application method App (line 32) | public App() method App_BackRequested (line 37) | private void App_BackRequested(object sender, Windows.UI.Core.BackRequ... method OnLaunched (line 59) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnSuspending (line 104) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/Common/NavigationHelper.cs class NavigationHelper (line 59) | [Windows.Foundation.Metadata.WebHostHidden] method NavigationHelper (line 71) | public NavigationHelper(Page page) method CanGoBack (line 161) | public virtual bool CanGoBack() method CanGoForward (line 173) | public virtual bool CanGoForward() method GoBack (line 182) | public virtual void GoBack() method GoForward (line 190) | public virtual void GoForward() method CoreDispatcher_AcceleratorKeyActivated (line 202) | private void CoreDispatcher_AcceleratorKeyActivated(CoreDispatcher sen... method CoreWindow_PointerPressed (line 246) | private void CoreWindow_PointerPressed(CoreWindow sender, method OnNavigatedTo (line 293) | public void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 335) | public void OnNavigatedFrom(NavigationEventArgs e) class LoadStateEventArgs (line 361) | public class LoadStateEventArgs : EventArgs method LoadStateEventArgs (line 385) | public LoadStateEventArgs(Object navigationParameter, Dictionary pageState) FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/Common/ObservableDictionary.cs class ObservableDictionary (line 12) | public class ObservableDictionary : IObservableMap class ObservableDictionaryChangedEventArgs (line 14) | private class ObservableDictionaryChangedEventArgs : IMapChangedEventA... method ObservableDictionaryChangedEventArgs (line 16) | public ObservableDictionaryChangedEventArgs(CollectionChange change,... method InvokeMapChanged (line 29) | private void InvokeMapChanged(CollectionChange change, string key) method Add (line 38) | public void Add(string key, object value) method Add (line 44) | public void Add(KeyValuePair item) method Remove (line 49) | public bool Remove(string key) method Remove (line 59) | public bool Remove(KeyValuePair item) method Clear (line 84) | public void Clear() method ContainsKey (line 99) | public bool ContainsKey(string key) method TryGetValue (line 104) | public bool TryGetValue(string key, out object value) method Contains (line 114) | public bool Contains(KeyValuePair item) method GetEnumerator (line 129) | public IEnumerator> GetEnumerator() method GetEnumerator (line 134) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... method CopyTo (line 139) | public void CopyTo(KeyValuePair[] array, int arrayIndex) FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/Common/RelayCommand.cs class RelayCommand (line 17) | public class RelayCommand : ICommand method RelayCommand (line 31) | public RelayCommand(Action execute) method RelayCommand (line 41) | public RelayCommand(Action execute, Func canExecute) method CanExecute (line 56) | public bool CanExecute(object parameter) method Execute (line 67) | public void Execute(object parameter) method RaiseCanExecuteChanged (line 77) | public void RaiseCanExecuteChanged() FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/Common/SuspensionManager.cs class SuspensionManager (line 23) | internal sealed class SuspensionManager method SaveAsync (line 58) | public static async Task SaveAsync() method RestoreAsync (line 101) | public static async Task RestoreAsync() method RegisterFrame (line 151) | public static void RegisterFrame(Frame frame, String sessionStateKey) method UnregisterFrame (line 179) | public static void UnregisterFrame(Frame frame) method SessionStateForFrame (line 204) | public static Dictionary SessionStateForFrame(Frame fr... method RestoreFrameNavigationState (line 230) | private static void RestoreFrameNavigationState(Frame frame) method SaveFrameNavigationState (line 239) | private static void SaveFrameNavigationState(Frame frame) class SuspensionManagerException (line 245) | public class SuspensionManagerException : Exception method SuspensionManagerException (line 247) | public SuspensionManagerException() method SuspensionManagerException (line 251) | public SuspensionManagerException(Exception e) FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/Controls/BackButton.xaml.cs class BackButton (line 24) | public sealed partial class BackButton : UserControl method BackButton (line 26) | public BackButton() method BackButton_Loaded (line 35) | private void BackButton_Loaded(object sender, RoutedEventArgs e) method CalculateOnCanvasBackVisibility (line 45) | private Visibility CalculateOnCanvasBackVisibility() FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/Converters/ImageSourceToStringConverter.cs class ImageSourceToStringConverter (line 10) | public class ImageSourceToStringConverter : IValueConverter method Convert (line 12) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 21) | public object ConvertBack(object value, Type targetType, object parame... FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/Converters/UserImagesDisplayConverter.cs class UserImagesDisplayConverter (line 12) | public class UserImagesDisplayConverter : IValueConverter method Convert (line 14) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 29) | public object ConvertBack(object value, Type targetType, object parame... FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/DataModel/BindableBase.cs class BindableBase (line 27) | [Windows.Foundation.Metadata.WebHostHidden] method SetProperty (line 47) | protected bool SetProperty(ref T storage, T value, [CallerMemberNam... method OnPropertyChanged (line 62) | protected void OnPropertyChanged([CallerMemberName] string propertyNam... FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/DataModel/RecipeDataSource.cs class RecipeDataCommon (line 42) | [Windows.Foundation.Metadata.WebHostHidden] method RecipeDataCommon (line 47) | public RecipeDataCommon(String uniqueId, String title, String shortTit... method SetImage (line 105) | public void SetImage(String path) method GetImageUri (line 112) | public string GetImageUri() class UserPhotoDataItem (line 121) | public class UserPhotoDataItem : RecipeDataCommon method UserPhotoDataItem (line 125) | public UserPhotoDataItem() class RecipeDataItem (line 134) | public class RecipeDataItem : RecipeDataCommon method RecipeDataItem (line 136) | public RecipeDataItem() method RecipeDataItem (line 143) | public RecipeDataItem(String uniqueId, String title, String shortTitle... method SetTileImage (line 214) | public void SetTileImage(String path) class RecipeDataGroup (line 225) | public class RecipeDataGroup : RecipeDataCommon method RecipeDataGroup (line 227) | public RecipeDataGroup() method RecipeDataGroup (line 232) | public RecipeDataGroup(String uniqueId, String title, String shortTitl... method SetGroupImage (line 290) | public void SetGroupImage(String path) class RecipeDataSource (line 301) | public sealed class RecipeDataSource method GetGroupsAsync (line 313) | public static async Task> GetGroupsAsync(... method GetGroupAsync (line 321) | public static async Task GetGroupAsync(string uniqueId) method GetItemAsync (line 330) | public static async Task GetItemAsync(string uniqueId) method EnsureRecipeDataLoaded (line 339) | private static async Task EnsureRecipeDataLoaded() method LoadLocalDataAsync (line 347) | public async Task LoadLocalDataAsync() method CreateRecipesAndRecipeGroups (line 360) | private static void CreateRecipesAndRecipeGroups(JsonArray array) method CreateRecipeGroup (line 424) | private static RecipeDataGroup CreateRecipeGroup(JsonObject obj) FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/DataModel/SampleDataSource.cs class SampleDataCommon (line 43) | [Windows.Foundation.Metadata.WebHostHidden] method SampleDataCommon (line 48) | public SampleDataCommon(String uniqueId, String title, String subtitle... method SetImage (line 105) | public void SetImage(String path) class SampleDataItem (line 116) | public class SampleDataItem : SampleDataCommon method SampleDataItem (line 118) | public SampleDataItem(String uniqueId, String title, String subtitle, ... class SampleDataGroup (line 167) | public class SampleDataGroup : SampleDataCommon method SampleDataGroup (line 169) | public SampleDataGroup(String uniqueId, String title, String subtitle,... class SampleDataSource (line 196) | public sealed class SampleDataSource method GetGroups (line 206) | public static IEnumerable GetGroups(string uniqueId) method GetGroup (line 213) | public static SampleDataGroup GetGroup(string uniqueId) method GetItem (line 221) | public static SampleDataItem GetItem(string uniqueId) method SampleDataSource (line 229) | public SampleDataSource() FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/GroupDetailPage.xaml.cs class GroupDetailPage (line 26) | public sealed partial class GroupDetailPage : Page method GroupDetailPage (line 48) | public GroupDetailPage() method navigationHelper_LoadState (line 69) | private async void navigationHelper_LoadState(object sender, LoadState... method OnNavigatedTo (line 89) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 94) | protected override void OnNavigatedFrom(NavigationEventArgs e) method lstRecipes_SelectionChanged (line 101) | private void lstRecipes_SelectionChanged(object sender, SelectionChang... method AppBarButton_Click (line 110) | private void AppBarButton_Click(object sender, RoutedEventArgs e) FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/MainPage.xaml.cs class MainPage (line 24) | public sealed partial class MainPage : Page method MainPage (line 46) | public MainPage() method navigationHelper_LoadState (line 65) | private async void navigationHelper_LoadState(object sender, LoadState... method OnNavigatedTo (line 85) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 90) | protected override void OnNavigatedFrom(NavigationEventArgs e) method About_Click (line 97) | private void About_Click(object sender, RoutedEventArgs e) method lstGroups_SelectionChanged (line 102) | private void lstGroups_SelectionChanged(object sender, SelectionChange... FILE: MigrationDemo/End/ContosoCookbook/ContosoCookbook/RecipeDetailPage.xaml.cs class RecipeDetailPage (line 34) | public sealed partial class RecipeDetailPage : Page method RecipeDetailPage (line 57) | public RecipeDetailPage() method navigationHelper_LoadState (line 78) | private async void navigationHelper_LoadState(object sender, LoadState... method OnShareDataRequested (line 91) | private async void OnShareDataRequested(DataTransferManager sender, Da... method OnNavigatedTo (line 136) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 141) | protected override void OnNavigatedFrom(NavigationEventArgs e) method btnPinToStart_Click (line 148) | private async void btnPinToStart_Click(object sender, RoutedEventArgs e) method btnReminderTimer_Click (line 174) | private async void btnReminderTimer_Click(object sender, RoutedEventAr... method btnShare_Click (line 197) | private void btnShare_Click(object sender, RoutedEventArgs e) method btnPhoto_Click (line 209) | private async void btnPhoto_Click(object sender, RoutedEventArgs e) method AppBarButton_Click (line 229) | private void AppBarButton_Click(object sender, RoutedEventArgs e) FILE: Navigation/Blank1/ViewModels/Page2ViewModel.cs class Page2ViewModel (line 11) | class Page2ViewModel: ViewModelBase method Page2ViewModel (line 13) | public Page2ViewModel() method OnNavigatedTo (line 18) | public override void OnNavigatedTo(string parameter, NavigationMode mo... FILE: Navigation/Blank1/Views/MainPage.xaml.cs class MainPage (line 5) | public sealed partial class MainPage : Page method MainPage (line 7) | public MainPage() method Goto2 (line 16) | private void Goto2(object sender, Windows.UI.Xaml.RoutedEventArgs e) FILE: Performance/Performance/App.xaml.cs class App (line 8) | sealed partial class App : Common.BootStrapper method App (line 10) | public App() : base() method OnInitializeAsync (line 15) | public override Task OnInitializeAsync() method OnLaunchedAsync (line 22) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: Performance/Performance/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 51) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 52) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 53) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 54) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 55) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 56) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 57) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 59) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 67) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 69) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 118) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 137) | public virtual Task OnInitializeAsync() { return Task.FromResult(ref T storage, T value, [CallerMemberName()]string ... FILE: Performance/Performance/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: Performance/Performance/Mvvm/ViewModelBase.cs class ViewModelBase (line 7) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedTo (line 9) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFrom (line 11) | public virtual void OnNavigatedFrom(Dictionary state, ... FILE: Performance/Performance/Repositories/TodoItemRepository.cs class TodoItemRepository (line 9) | public class TodoItemRepository method Factory (line 11) | public Models.TodoItem Factory(string key = null, bool? complete = nul... method Clone (line 21) | public Models.TodoItem Clone(Models.TodoItem item) method Sample (line 32) | public IEnumerable Sample(int count = 5) FILE: Performance/Performance/Services/FileService/FileHelper.cs class FileHelper (line 10) | class FileHelper method FileExistsAsync (line 16) | public async Task FileExistsAsync(string key, StorageStrategies ... method FileExistsAsync (line 21) | public async Task FileExistsAsync(string key, Windows.Storage.St... method DeleteFileAsync (line 29) | public async Task DeleteFileAsync(string key, StorageStrategies ... method ReadFileAsync (line 42) | public async Task ReadFileAsync(string key, StorageStrategies lo... method WriteFileAsync (line 67) | public async Task WriteFileAsync(string key, T value, Storage... method CreateFileAsync (line 79) | private async Task CreateFileAsync(string... method GetIfFileExistsAsync (line 95) | private async Task GetIfFileExistsAsync(s... method GetIfFileExistsAsync (line 115) | private async Task GetIfFileExistsAsync(s... method Serialize (line 146) | private string Serialize(T item) method Deserialize (line 156) | private T Deserialize(string json) type StorageStrategies (line 161) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: Performance/Performance/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadAsync (line 13) | public async Task> ReadAsync(string key) method WriteAsync (line 19) | public async Task WriteAsync(string key, List items) FILE: Performance/Performance/Services/NavigationService/INavigatable.cs type INavigatable (line 6) | public interface INavigatable method OnNavigatedTo (line 8) | void OnNavigatedTo(string parameter, NavigationMode mode, Dictionary state, bool suspending); FILE: Performance/Performance/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: Performance/Performance/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: Performance/Performance/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | void NavigateFrom(bool suspending) method NavigateTo (line 36) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODO */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: Performance/Performance/ViewModels/IncrementalAccessPageViewModel.cs class IncrementalAccessPageViewModel (line 10) | public class IncrementalAccessPageViewModel : Mvvm.ViewModelBase method IncrementalAccessPageViewModel (line 12) | public IncrementalAccessPageViewModel() FILE: Performance/Performance/ViewModels/RandomAccessPageViewModel.cs class RandomAccessPageViewModel (line 5) | class RandomAccessPageViewModel : Mvvm.ViewModelBase method RandomAccessPageViewModel (line 7) | public RandomAccessPageViewModel() FILE: Performance/Performance/ViewModels/TodoItemViewModel.cs class TodoItemViewModel (line 9) | public class TodoItemViewModel : Mvvm.ViewModelBase method TodoItemViewModel (line 12) | public TodoItemViewModel(Models.TodoItem todo) FILE: Performance/Performance/Views/DeferedPhasePage.xaml.cs class DeferedPhasePage (line 23) | public sealed partial class DeferedPhasePage : Page method DeferedPhasePage (line 25) | public DeferedPhasePage() FILE: Performance/Performance/Views/IncrementalAccessPage.xaml.cs class IncrementalAccessPage (line 23) | public sealed partial class IncrementalAccessPage : Page method IncrementalAccessPage (line 25) | public IncrementalAccessPage() FILE: Performance/Performance/Views/RandomAccessPage.xaml.cs class RandomAccessPage (line 7) | public sealed partial class RandomAccessPage : Page method RandomAccessPage (line 9) | public RandomAccessPage() FILE: Performance/Performance/Views/ShellPage.xaml.cs class ShellPage (line 5) | public sealed partial class ShellPage : Page method ShellPage (line 8) | public ShellPage(Frame frame) method Rav_Click (line 15) | private void Rav_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e) method Iav_Click (line 20) | private void Iav_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e) method Dpr_Click (line 25) | private void Dpr_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e) FILE: Performance/Performance/Virtualize/IProvider.cs type IProvider (line 10) | public interface IProvider : INotifyPropertyChanged method LoadAsync (line 15) | Task> LoadAsync(uint start, int size); FILE: Performance/Performance/Virtualize/IncrementalList.cs class IncrementalList (line 11) | public class IncrementalList : List, ISupportIncrementalLoading, I... method IncrementalList (line 19) | public IncrementalList(IProvider provider, int pageSize = 10) method LoadMoreItemsAsync (line 32) | public IAsyncOperation LoadMoreItemsAsync(uint co... FILE: Performance/Performance/Virtualize/ObservableVector.cs class ObservableVector (line 14) | public class ObservableVector : IObservableVector, IList, IEnum... method ObservableVector (line 19) | public ObservableVector(INotifyCollectionChanged list) method IndexOf (line 34) | public int IndexOf(T item) method Insert (line 39) | public void Insert(int index, T item) method RemoveAt (line 49) | public void RemoveAt(int index) method Add (line 80) | public void Add(T item) method Contains (line 90) | public bool Contains(T item) method CopyTo (line 95) | public void CopyTo(T[] array, int arrayIndex) method Remove (line 116) | public bool Remove(T item) method First (line 133) | public Windows.Foundation.Collections.IIterator First() method GetEnumerator (line 142) | public IEnumerator GetEnumerator() method GetEnumerator (line 151) | IEnumerator IEnumerable.GetEnumerator() method Append (line 166) | public void Append(T value) method Clear (line 176) | public void Clear() method GetAt (line 186) | public object GetAt(uint index) method GetMany (line 191) | public uint GetMany(uint startIndex, object[] items) method GetView (line 196) | public IReadOnlyList GetView() method IndexOf (line 201) | public bool IndexOf(T value, out uint index) method InsertAt (line 207) | public void InsertAt(uint index, T value) method RemoveAt (line 217) | public void RemoveAt(uint index) method RemoveAtEnd (line 227) | public void RemoveAtEnd() method ReplaceAll (line 237) | public void ReplaceAll(object[] items) method SetAt (line 242) | public void SetAt(uint index, T value) class VectorChangedEventArgs (line 263) | public class VectorChangedEventArgs : IVectorChangedEventArgs class ObservableVectorExtensionClass (line 282) | public static class ObservableVectorExtensionClass method ToObservableVector (line 284) | public static ObservableVector ToObservableVector(this INotifyCo... FILE: Performance/Performance/Virtualize/RandomAccessList - Copy.cs class RandomAccessList (line 12) | public class RandomAccessList : Collection, INotifyPropertyCh... method RandomAccessList (line 30) | public RandomAccessList(IProvider provider, int takeSize = 20) method StartLoadAsync (line 51) | private async void StartLoadAsync(int start) method ClearItems (line 78) | protected override void ClearItems() method InsertItem (line 84) | protected override void InsertItem(int index, object item) method RemoveItem (line 90) | protected override void RemoveItem(int index) method SetItem (line 96) | protected override void SetItem(int index, object item) method RaiseChanged (line 102) | void RaiseChanged(bool count, bool items, CollectionChange change, uin... method IndexOf (line 109) | public new int IndexOf(object item) { throw new NotImplementedExceptio... method Insert (line 110) | public new void Insert(int index, object item) { throw new NotImplemen... method Add (line 111) | public new void Add(object item) { throw new NotImplementedException(); } method Contains (line 112) | public new bool Contains(object item) { throw new NotImplementedExcept... method CopyTo (line 113) | public new void CopyTo(object[] array, int arrayIndex) { throw new Not... method Remove (line 114) | public new bool Remove(object item) { throw new NotImplementedExceptio... method GetEnumerator (line 115) | IEnumerator IEnumerable.GetEnumerator() { throw new No... class VectorChangedEventArgs (line 117) | private class VectorChangedEventArgs : IVectorChangedEventArgs FILE: Performance/Performance/Virtualize/RandomAccessList.cs class RandomAccessList (line 13) | public class RandomAccessList : ObservableCollection, IObserv... method RandomAccessList (line 32) | public RandomAccessList(IProvider provider, int takeSize = 20) class VectorChangedEventArgs (line 85) | private class VectorChangedEventArgs : IVectorChangedEventArgs FILE: Performance/Performance/Virtualize/TodoItemViewModelProvider.cs class TodoItemViewModelProvider (line 12) | public class TodoItemViewModelProvider : IProvider method TodoItemViewModelProvider (line 17) | public TodoItemViewModelProvider() method LoadAsync (line 30) | public async Task> LoadAsync(uint s... FILE: ProtocolHandlerDemo/FirstProtocolHandler/App.xaml.cs class App (line 26) | sealed partial class App : Application method App (line 37) | public App() method OnLaunched (line 48) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 96) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 108) | private void OnSuspending(object sender, SuspendingEventArgs e) method OnActivated (line 115) | protected override void OnActivated(IActivatedEventArgs args) FILE: ProtocolHandlerDemo/FirstProtocolHandler/MainPage.xaml.cs class MainPage (line 24) | public sealed partial class MainPage : Page method MainPage (line 26) | public MainPage() FILE: ProtocolHandlerDemo/ProtocolHandlerDemo/App.xaml.cs class App (line 26) | sealed partial class App : Application method App (line 37) | public App() method OnLaunched (line 48) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 96) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 108) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: ProtocolHandlerDemo/ProtocolHandlerDemo/MainPage.xaml.cs class MainPage (line 24) | public sealed partial class MainPage : Page method MainPage (line 26) | public MainPage() method LaunchButton_Click (line 31) | private async void LaunchButton_Click(object sender, RoutedEventArgs e) FILE: ProtocolHandlerDemo/SecondProtocolHandler/App.xaml.cs class App (line 26) | sealed partial class App : Application method App (line 37) | public App() method OnLaunched (line 48) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 96) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 108) | private void OnSuspending(object sender, SuspendingEventArgs e) method OnActivated (line 115) | protected override void OnActivated(IActivatedEventArgs args) FILE: ProtocolHandlerDemo/SecondProtocolHandler/MainPage.xaml.cs class MainPage (line 23) | public sealed partial class MainPage : Page method MainPage (line 25) | public MainPage() FILE: PushTriggerSample/PushTriggerBackgroundTask/RawTriggerTask.cs class RawTriggerTask (line 15) | public sealed class RawTriggerTask : IBackgroundTask method Run (line 17) | public void Run(IBackgroundTaskInstance taskInstance) method DeliverToast (line 37) | private void DeliverToast(string todoTitle, string todoID) FILE: PushTriggerSample/PushTriggerSample/App.xaml.cs class App (line 9) | sealed partial class App : Common.BootStrapper method App (line 11) | public App() : base() method OnLaunchedAsync (line 16) | public async override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: PushTriggerSample/PushTriggerSample/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 51) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 52) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 53) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 54) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 55) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 56) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 57) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 59) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 67) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 69) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 118) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 137) | public virtual Task OnInitializeAsync() { return Task.FromResult RegisterForPushAsync() method channel_PushNotificationReceived (line 18) | static void channel_PushNotificationReceived(PushNotificationChannel s... FILE: PushTriggerSample/PushTriggerSample/Models/TodoItem.cs class TodoItem (line 5) | public class TodoItem : Mvvm.BindableBase FILE: PushTriggerSample/PushTriggerSample/Models/TodoList.cs class TodoList (line 7) | public class TodoList : Mvvm.BindableBase FILE: PushTriggerSample/PushTriggerSample/Mvvm/BindableBase.cs class BindableBase (line 6) | public abstract class BindableBase : INotifyPropertyChanged method RaisePropertyChanged (line 10) | public void RaisePropertyChanged([CallerMemberName]string propertyName... method Set (line 15) | public void Set(ref T storage, T value, [CallerMemberName()]string ... FILE: PushTriggerSample/PushTriggerSample/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: PushTriggerSample/PushTriggerSample/Mvvm/ViewModelBase.cs class ViewModelBase (line 7) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedTo (line 9) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFrom (line 11) | public virtual void OnNavigatedFrom(Dictionary state, ... FILE: PushTriggerSample/PushTriggerSample/Repositories/TodoItemRepository.cs class TodoItemRepository (line 9) | public class TodoItemRepository method Factory (line 11) | public Models.TodoItem Factory(string key = null, bool? complete = nul... method Clone (line 21) | public Models.TodoItem Clone(Models.TodoItem item) method Sample (line 32) | public IEnumerable Sample(int count = 5) FILE: PushTriggerSample/PushTriggerSample/Repositories/TodoListRepository.cs class TodoListRepository (line 9) | public class TodoListRepository method TodoListRepository (line 16) | public TodoListRepository() method GetAsync (line 22) | public async Task> GetAsync() method GetAsync (line 27) | public async Task GetAsync(string key) method SaveAsync (line 32) | public async Task SaveAsync(List list) method Factory (line 37) | public Models.TodoList Factory(string key = null, string title = null,... method Clone (line 47) | public Models.TodoList Clone(Models.TodoList list) method Sample (line 57) | public IEnumerable Sample(int count = 5) FILE: PushTriggerSample/PushTriggerSample/Services/FileService/FileHelper.cs class FileHelper (line 10) | class FileHelper method FileExistsAsync (line 16) | public async Task FileExistsAsync(string key, StorageStrategies ... method FileExistsAsync (line 21) | public async Task FileExistsAsync(string key, Windows.Storage.St... method DeleteFileAsync (line 29) | public async Task DeleteFileAsync(string key, StorageStrategies ... method ReadFileAsync (line 42) | public async Task ReadFileAsync(string key, StorageStrategies lo... method WriteFileAsync (line 67) | public async Task WriteFileAsync(string key, T value, Storage... method CreateFileAsync (line 79) | private async Task CreateFileAsync(string... method GetIfFileExistsAsync (line 95) | private async Task GetIfFileExistsAsync(s... method GetIfFileExistsAsync (line 115) | private async Task GetIfFileExistsAsync(s... method Serialize (line 146) | private string Serialize(T item) method Deserialize (line 156) | private T Deserialize(string json) type StorageStrategies (line 161) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: PushTriggerSample/PushTriggerSample/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadAsync (line 13) | public async Task> ReadAsync(string key) method WriteAsync (line 19) | public async Task WriteAsync(string key, List items) FILE: PushTriggerSample/PushTriggerSample/Services/NavigationService/INavigatable.cs type INavigatable (line 6) | public interface INavigatable method OnNavigatedTo (line 8) | void OnNavigatedTo(string parameter, NavigationMode mode, Dictionary state, bool suspending); FILE: PushTriggerSample/PushTriggerSample/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: PushTriggerSample/PushTriggerSample/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: PushTriggerSample/PushTriggerSample/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | void NavigateFrom(bool suspending) method NavigateTo (line 36) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* PushTriggerSample */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: PushTriggerSample/PushTriggerSample/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 11) | public class MainPageViewModel : Mvvm.ViewModelBase method MainPageViewModel (line 15) | public MainPageViewModel() method OnNavigatedTo (line 36) | public override void OnNavigatedTo(string parameter, NavigationMode mo... method OnNavigatedFrom (line 41) | public override void OnNavigatedFrom(Dictionary state,... method CanExecuteAddListCommand (line 56) | private bool CanExecuteAddListCommand() { return !Busy; } method ExecuteAddListCommand (line 57) | private void ExecuteAddListCommand() method CanExecuteRemoveListCommand (line 70) | private bool CanExecuteRemoveListCommand(ViewModels.TodoListViewModel ... method ExecuteRemoveListCommand (line 71) | private void ExecuteRemoveListCommand(ViewModels.TodoListViewModel list) method CanExecuteLoadCommand (line 84) | private bool CanExecuteLoadCommand() { return !Busy; } method ExecuteLoadCommand (line 85) | private async void ExecuteLoadCommand() method CanExecuteSaveCommand (line 103) | private bool CanExecuteSaveCommand() { return true; } method ExecuteSaveCommand (line 104) | private async void ExecuteSaveCommand() FILE: PushTriggerSample/PushTriggerSample/ViewModels/TodoItemViewModel.cs class TodoItemViewModel (line 8) | public class TodoItemViewModel : Mvvm.ViewModelBase method TodoItemViewModel (line 10) | public TodoItemViewModel(Models.TodoItem todo) FILE: PushTriggerSample/PushTriggerSample/ViewModels/TodoListViewModel.cs class TodoListViewModel (line 6) | public class TodoListViewModel : Mvvm.ViewModelBase method TodoListViewModel (line 10) | public TodoListViewModel(Models.TodoList list) method CanExecuteAddCommand (line 35) | private bool CanExecuteAddCommand(string title) { return true; } method ExecuteAddCommand (line 36) | private void ExecuteAddCommand(string title) method CanExecuteRemoveCommand (line 51) | private bool CanExecuteRemoveCommand(Models.TodoItem param) { return t... method ExecuteRemoveCommand (line 52) | private void ExecuteRemoveCommand(Models.TodoItem param) FILE: PushTriggerSample/PushTriggerSample/Views/MainPage.xaml.cs class MainPage (line 8) | public sealed partial class MainPage : Page method MainPage (line 10) | public MainPage() method TodoItem_ItemClicked (line 20) | private async void TodoItem_ItemClicked(object sender, ItemClickEventA... method List_Tapped (line 26) | private async void List_Tapped(object sender, Windows.UI.Xaml.Input.Ta... method TextBox_KeyDown (line 36) | private void TextBox_KeyDown(object sender, Windows.UI.Xaml.Input.KeyR... FILE: RoamingSettingsDemo/RoamingSettingsDemo/App.xaml.cs class App (line 7) | sealed partial class App : Common.BootStrapper method App (line 9) | public App() : base() method OnLaunchedAsync (line 14) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: RoamingSettingsDemo/RoamingSettingsDemo/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 51) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 52) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 53) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 54) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 55) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 56) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 57) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 59) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 67) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 69) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 118) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 137) | public virtual Task OnInitializeAsync() { return Task.FromResult state, bool suspending); method OnNavigatingFrom (line 10) | void OnNavigatingFrom(NavigatingCancelEventArgs args); FILE: RoamingSettingsDemo/RoamingSettingsDemo/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: RoamingSettingsDemo/RoamingSettingsDemo/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: RoamingSettingsDemo/RoamingSettingsDemo/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | void NavigateFrom(bool suspending) method NavigateTo (line 36) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODO */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: RoamingSettingsDemo/RoamingSettingsDemo/Views/MainPage.xaml.cs class MainPage (line 24) | public sealed partial class MainPage : Page method MainPage (line 26) | public MainPage() method OnNavigatedTo (line 31) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 38) | protected override void OnNavigatedFrom(NavigationEventArgs e) method RoamingDataChanged (line 43) | private void RoamingDataChanged(Windows.Storage.ApplicationData sender... method SetBackgroundFromSettings (line 51) | private void SetBackgroundFromSettings() method radioButton_Checked (line 74) | private void radioButton_Checked(object sender, RoutedEventArgs e) FILE: SQLiteDemo/SQLiteDemo/App.xaml.cs class App (line 28) | public sealed partial class App : Application method App (line 41) | public App() method OnLaunched (line 53) | protected async override void OnLaunched(LaunchActivatedEventArgs e) method RootFrame_FirstNavigated (line 135) | private void RootFrame_FirstNavigated(object sender, NavigationEventAr... method OnSuspending (line 150) | private async void OnSuspending(object sender, SuspendingEventArgs e) FILE: SQLiteDemo/SQLiteDemo/Common/NavigationHelper.cs class NavigationHelper (line 59) | [Windows.Foundation.Metadata.WebHostHidden] method NavigationHelper (line 71) | public NavigationHelper(Page page) method CanGoBack (line 189) | public virtual bool CanGoBack() method CanGoForward (line 201) | public virtual bool CanGoForward() method GoBack (line 210) | public virtual void GoBack() method GoForward (line 218) | public virtual void GoForward() method ShellOrHardwareBackPressed (line 229) | private void ShellOrHardwareBackPressed(object sender, BackRequestedEv... method HardwareButtons_BackPressed (line 245) | private void HardwareButtons_BackPressed(object sender, Windows.Phone.... method CoreDispatcher_AcceleratorKeyActivated (line 261) | private void CoreDispatcher_AcceleratorKeyActivated(CoreDispatcher sen... method CoreWindow_PointerPressed (line 305) | private void CoreWindow_PointerPressed(CoreWindow sender, method OnNavigatedTo (line 353) | public void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 395) | public void OnNavigatedFrom(NavigationEventArgs e) class LoadStateEventArgs (line 421) | public class LoadStateEventArgs : EventArgs method LoadStateEventArgs (line 445) | public LoadStateEventArgs(Object navigationParameter, Dictionary pageState) FILE: SQLiteDemo/SQLiteDemo/Common/ObservableDictionary.cs class ObservableDictionary (line 12) | public class ObservableDictionary : IObservableMap class ObservableDictionaryChangedEventArgs (line 14) | private class ObservableDictionaryChangedEventArgs : IMapChangedEventA... method ObservableDictionaryChangedEventArgs (line 16) | public ObservableDictionaryChangedEventArgs(CollectionChange change,... method InvokeMapChanged (line 29) | private void InvokeMapChanged(CollectionChange change, string key) method Add (line 38) | public void Add(string key, object value) method Add (line 44) | public void Add(KeyValuePair item) method Remove (line 49) | public bool Remove(string key) method Remove (line 59) | public bool Remove(KeyValuePair item) method Clear (line 84) | public void Clear() method ContainsKey (line 99) | public bool ContainsKey(string key) method TryGetValue (line 104) | public bool TryGetValue(string key, out object value) method Contains (line 114) | public bool Contains(KeyValuePair item) method GetEnumerator (line 129) | public IEnumerator> GetEnumerator() method GetEnumerator (line 134) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... method CopyTo (line 139) | public void CopyTo(KeyValuePair[] array, int arrayIndex) FILE: SQLiteDemo/SQLiteDemo/Common/RelayCommand.cs class RelayCommand (line 17) | public class RelayCommand : ICommand method RelayCommand (line 31) | public RelayCommand(Action execute) method RelayCommand (line 41) | public RelayCommand(Action execute, Func canExecute) method CanExecute (line 56) | public bool CanExecute(object parameter) method Execute (line 67) | public void Execute(object parameter) method RaiseCanExecuteChanged (line 77) | public void RaiseCanExecuteChanged() FILE: SQLiteDemo/SQLiteDemo/Common/SuspensionManager.cs class SuspensionManager (line 23) | internal sealed class SuspensionManager method SaveAsync (line 58) | public static async Task SaveAsync() method RestoreAsync (line 103) | public static async Task RestoreAsync(String sessionBaseKey = null) method RegisterFrame (line 157) | public static void RegisterFrame(Frame frame, String sessionStateKey, ... method UnregisterFrame (line 191) | public static void UnregisterFrame(Frame frame) method SessionStateForFrame (line 216) | public static Dictionary SessionStateForFrame(Frame fr... method RestoreFrameNavigationState (line 242) | private static void RestoreFrameNavigationState(Frame frame) method SaveFrameNavigationState (line 251) | private static void SaveFrameNavigationState(Frame frame) class SuspensionManagerException (line 257) | public class SuspensionManagerException : Exception method SuspensionManagerException (line 259) | public SuspensionManagerException() method SuspensionManagerException (line 263) | public SuspensionManagerException(Exception e) FILE: SQLiteDemo/SQLiteDemo/Converters/DateTimeToStringConverter.cs class DateTimeToStringConverter (line 8) | class DateTimeToStringConverter : IValueConverter method Convert (line 10) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 28) | public object ConvertBack(object value, Type targetType, object parame... FILE: SQLiteDemo/SQLiteDemo/CreateDatabase.cs class CreateDatabase (line 10) | public class CreateDatabase method LoadDatabase (line 12) | public static void LoadDatabase(SQLiteConnection db) method ResetDataAsync (line 46) | public async static Task ResetDataAsync(SQLiteConnection db) method InsertCustomer (line 88) | private async static Task InsertCustomer(ISQLiteConnection db, s... method InsertProject (line 123) | private static Task InsertProject(ISQLiteConnection db, long customerI... FILE: SQLiteDemo/SQLiteDemo/MainPage.xaml.cs class MainPage (line 25) | public sealed partial class MainPage : Page method MainPage (line 43) | public MainPage() method navigationHelper_LoadState (line 62) | private void navigationHelper_LoadState(object sender, LoadStateEventA... method navigationHelper_SaveState (line 74) | private void navigationHelper_SaveState(object sender, SaveStateEventA... method OnNavigatedTo (line 89) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 101) | protected override void OnNavigatedFrom(NavigationEventArgs e) method LoadData (line 108) | private void LoadData() method ResetDataAppBarButton_Click (line 114) | private async void ResetDataAppBarButton_Click(object sender, RoutedEv... method CustomersList_SelectionChanged (line 126) | private void CustomersList_SelectionChanged(object sender, SelectionCh... FILE: SQLiteDemo/SQLiteDemo/ProjectsPage.xaml.cs class ProjectsPage (line 26) | public sealed partial class ProjectsPage : Page method ProjectsPage (line 44) | public ProjectsPage() method navigationHelper_LoadState (line 63) | private void navigationHelper_LoadState(object sender, LoadStateEventA... method navigationHelper_SaveState (line 75) | private void navigationHelper_SaveState(object sender, SaveStateEventA... method OnNavigatedTo (line 90) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 115) | protected override void OnNavigatedFrom(NavigationEventArgs e) FILE: SQLiteDemo/SQLiteDemo/ViewModels/Customer.cs class Customer (line 4) | public class Customer : ViewModelBase method Customer (line 45) | internal Customer() method Customer (line 49) | internal Customer(long id, string name, string city, string contact) FILE: SQLiteDemo/SQLiteDemo/ViewModels/CustomersViewModel.cs class CustomersViewModel (line 11) | public class CustomersViewModel : TableViewModelBase method CustomersViewModel (line 13) | private CustomersViewModel() { } method GetDefault (line 16) | public static CustomersViewModel GetDefault() method GetSelectAllSql (line 27) | protected override string GetSelectAllSql() method FillSelectAllStatement (line 32) | protected override void FillSelectAllStatement(ISQLiteStatement statem... method CreateItem (line 37) | protected override Customer CreateItem(ISQLiteStatement statement) method GetSelectItemSql (line 49) | protected override string GetSelectItemSql() method FillSelectItemStatement (line 54) | protected override void FillSelectItemStatement(ISQLiteStatement state... method GetInsertItemSql (line 59) | protected override string GetInsertItemSql() method FillInsertStatement (line 64) | protected override void FillInsertStatement(ISQLiteStatement statement... method GetUpdateItemSql (line 72) | protected override string GetUpdateItemSql() method FillUpdateStatement (line 77) | protected override void FillUpdateStatement(ISQLiteStatement statement... method GetDeleteItemSql (line 86) | protected override string GetDeleteItemSql() method FillDeleteItemStatement (line 91) | protected override void FillDeleteItemStatement(ISQLiteStatement state... FILE: SQLiteDemo/SQLiteDemo/ViewModels/Project.cs class Project (line 8) | public class Project : ViewModelBase method Project (line 56) | internal Project(long customerId) method Project (line 63) | internal Project(long id, long customerId, string name, string descrip... FILE: SQLiteDemo/SQLiteDemo/ViewModels/ProjectsViewModel.cs class ProjectsViewModel (line 10) | public class ProjectsViewModel : TableViewModelBase method ProjectsViewModel (line 12) | private ProjectsViewModel(long customerId) method ProjectsViewModel (line 17) | private ProjectsViewModel() method GetForCustomerId (line 43) | public static ProjectsViewModel GetForCustomerId(long customerId) method GetDefault (line 54) | public static ProjectsViewModel GetDefault() method GetSelectAllSql (line 67) | protected override string GetSelectAllSql() method FillSelectAllStatement (line 80) | protected override void FillSelectAllStatement(ISQLiteStatement statem... method CreateItem (line 88) | protected override Project CreateItem(ISQLiteStatement statement) method GetSelectItemSql (line 102) | protected override string GetSelectItemSql() method FillSelectItemStatement (line 109) | protected override void FillSelectItemStatement(ISQLiteStatement state... method GetInsertItemSql (line 114) | protected override string GetInsertItemSql() method FillInsertStatement (line 119) | protected override void FillInsertStatement(ISQLiteStatement statement... method GetUpdateItemSql (line 127) | protected override string GetUpdateItemSql() method FillUpdateStatement (line 132) | protected override void FillUpdateStatement(ISQLiteStatement statement... method GetDeleteItemSql (line 138) | protected override string GetDeleteItemSql() method FillDeleteItemStatement (line 143) | protected override void FillDeleteItemStatement(ISQLiteStatement state... FILE: SQLiteDemo/SQLiteDemo/ViewModels/TableViewModelBase.cs class TableViewModelBase (line 12) | public abstract class TableViewModelBase method GetSelectAllSql (line 14) | protected abstract string GetSelectAllSql(); method FillSelectAllStatement (line 15) | protected abstract void FillSelectAllStatement(ISQLiteStatement statem... method CreateItem (line 17) | protected abstract TItemType CreateItem(ISQLiteStatement statement); method GetSelectItemSql (line 19) | protected abstract string GetSelectItemSql(); method FillSelectItemStatement (line 20) | protected abstract void FillSelectItemStatement(ISQLiteStatement state... method GetDeleteItemSql (line 22) | protected abstract string GetDeleteItemSql(); method FillDeleteItemStatement (line 23) | protected abstract void FillDeleteItemStatement(ISQLiteStatement state... method GetInsertItemSql (line 25) | protected abstract string GetInsertItemSql(); method FillInsertStatement (line 26) | protected abstract void FillInsertStatement(ISQLiteStatement statement... method GetUpdateItemSql (line 28) | protected abstract string GetUpdateItemSql(); method FillUpdateStatement (line 29) | protected abstract void FillUpdateStatement(ISQLiteStatement statement... method GetAllItems (line 50) | public ObservableCollection GetAllItems() method GetItem (line 67) | public TItemType GetItem(TKeyType key) method InsertItem (line 84) | public void InsertItem(TItemType item) method UpdateItem (line 94) | public void UpdateItem(TKeyType key, TItemType item) method DeleteItem (line 104) | public void DeleteItem(TKeyType key) FILE: SQLiteDemo/SQLiteDemo/ViewModels/ViewModelBase.cs class ViewModelBase (line 6) | public class ViewModelBase : INotifyPropertyChanged method RaisePropertyChanged (line 10) | protected virtual void RaisePropertyChanged([CallerMemberName] string ... method SetProperty (line 19) | protected bool SetProperty(ref T current, T value, [CallerMemberNam... FILE: ShareContractExample/ContosoCookbook/AboutPage.xaml.cs class AboutPage (line 23) | public sealed partial class AboutPage : Page method AboutPage (line 45) | public AboutPage() method navigationHelper_LoadState (line 64) | private void navigationHelper_LoadState(object sender, LoadStateEventA... method OnNavigatedTo (line 84) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 89) | protected override void OnNavigatedFrom(NavigationEventArgs e) FILE: ShareContractExample/ContosoCookbook/App.xaml.cs class App (line 26) | sealed partial class App : Application method App (line 32) | public App() method OnLaunched (line 43) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnSuspending (line 86) | private void OnSuspending(object sender, SuspendingEventArgs e) method App_BackRequested (line 93) | private void App_BackRequested(object sender, Windows.UI.Core.BackRequ... FILE: ShareContractExample/ContosoCookbook/Common/NavigationHelper.cs class NavigationHelper (line 59) | [Windows.Foundation.Metadata.WebHostHidden] method NavigationHelper (line 71) | public NavigationHelper(Page page) method CanGoBack (line 161) | public virtual bool CanGoBack() method CanGoForward (line 173) | public virtual bool CanGoForward() method GoBack (line 182) | public virtual void GoBack() method GoForward (line 190) | public virtual void GoForward() method CoreDispatcher_AcceleratorKeyActivated (line 202) | private void CoreDispatcher_AcceleratorKeyActivated(CoreDispatcher sen... method CoreWindow_PointerPressed (line 246) | private void CoreWindow_PointerPressed(CoreWindow sender, method OnNavigatedTo (line 293) | public void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 335) | public void OnNavigatedFrom(NavigationEventArgs e) class LoadStateEventArgs (line 361) | public class LoadStateEventArgs : EventArgs method LoadStateEventArgs (line 385) | public LoadStateEventArgs(Object navigationParameter, Dictionary pageState) FILE: ShareContractExample/ContosoCookbook/Common/ObservableDictionary.cs class ObservableDictionary (line 12) | public class ObservableDictionary : IObservableMap class ObservableDictionaryChangedEventArgs (line 14) | private class ObservableDictionaryChangedEventArgs : IMapChangedEventA... method ObservableDictionaryChangedEventArgs (line 16) | public ObservableDictionaryChangedEventArgs(CollectionChange change,... method InvokeMapChanged (line 29) | private void InvokeMapChanged(CollectionChange change, string key) method Add (line 38) | public void Add(string key, object value) method Add (line 44) | public void Add(KeyValuePair item) method Remove (line 49) | public bool Remove(string key) method Remove (line 59) | public bool Remove(KeyValuePair item) method Clear (line 84) | public void Clear() method ContainsKey (line 99) | public bool ContainsKey(string key) method TryGetValue (line 104) | public bool TryGetValue(string key, out object value) method Contains (line 114) | public bool Contains(KeyValuePair item) method GetEnumerator (line 129) | public IEnumerator> GetEnumerator() method GetEnumerator (line 134) | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnume... method CopyTo (line 139) | public void CopyTo(KeyValuePair[] array, int arrayIndex) FILE: ShareContractExample/ContosoCookbook/Common/RelayCommand.cs class RelayCommand (line 17) | public class RelayCommand : ICommand method RelayCommand (line 31) | public RelayCommand(Action execute) method RelayCommand (line 41) | public RelayCommand(Action execute, Func canExecute) method CanExecute (line 56) | public bool CanExecute(object parameter) method Execute (line 67) | public void Execute(object parameter) method RaiseCanExecuteChanged (line 77) | public void RaiseCanExecuteChanged() FILE: ShareContractExample/ContosoCookbook/Common/SuspensionManager.cs class SuspensionManager (line 23) | internal sealed class SuspensionManager method SaveAsync (line 58) | public static async Task SaveAsync() method RestoreAsync (line 101) | public static async Task RestoreAsync() method RegisterFrame (line 151) | public static void RegisterFrame(Frame frame, String sessionStateKey) method UnregisterFrame (line 179) | public static void UnregisterFrame(Frame frame) method SessionStateForFrame (line 204) | public static Dictionary SessionStateForFrame(Frame fr... method RestoreFrameNavigationState (line 230) | private static void RestoreFrameNavigationState(Frame frame) method SaveFrameNavigationState (line 239) | private static void SaveFrameNavigationState(Frame frame) class SuspensionManagerException (line 245) | public class SuspensionManagerException : Exception method SuspensionManagerException (line 247) | public SuspensionManagerException() method SuspensionManagerException (line 251) | public SuspensionManagerException(Exception e) FILE: ShareContractExample/ContosoCookbook/Converters/ImageSourceToStringConverter.cs class ImageSourceToStringConverter (line 10) | public class ImageSourceToStringConverter : IValueConverter method Convert (line 12) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 21) | public object ConvertBack(object value, Type targetType, object parame... FILE: ShareContractExample/ContosoCookbook/Converters/UserImagesDisplayConverter.cs class UserImagesDisplayConverter (line 12) | public class UserImagesDisplayConverter : IValueConverter method Convert (line 14) | public object Convert(object value, Type targetType, object parameter,... method ConvertBack (line 29) | public object ConvertBack(object value, Type targetType, object parame... FILE: ShareContractExample/ContosoCookbook/DataModel/BindableBase.cs class BindableBase (line 27) | [Windows.Foundation.Metadata.WebHostHidden] method SetProperty (line 47) | protected bool SetProperty(ref T storage, T value, [CallerMemberNam... method OnPropertyChanged (line 62) | protected void OnPropertyChanged([CallerMemberName] string propertyNam... FILE: ShareContractExample/ContosoCookbook/DataModel/RecipeDataSource.cs class RecipeDataCommon (line 42) | [Windows.Foundation.Metadata.WebHostHidden] method RecipeDataCommon (line 47) | public RecipeDataCommon(String uniqueId, String title, String shortTit... method SetImage (line 105) | public void SetImage(String path) method GetImageUri (line 112) | public string GetImageUri() class UserPhotoDataItem (line 121) | public class UserPhotoDataItem : RecipeDataCommon method UserPhotoDataItem (line 125) | public UserPhotoDataItem() class RecipeDataItem (line 134) | public class RecipeDataItem : RecipeDataCommon method RecipeDataItem (line 136) | public RecipeDataItem() method RecipeDataItem (line 143) | public RecipeDataItem(String uniqueId, String title, String shortTitle... method SetTileImage (line 214) | public void SetTileImage(String path) class RecipeDataGroup (line 225) | public class RecipeDataGroup : RecipeDataCommon method RecipeDataGroup (line 227) | public RecipeDataGroup() method RecipeDataGroup (line 232) | public RecipeDataGroup(String uniqueId, String title, String shortTitl... method SetGroupImage (line 290) | public void SetGroupImage(String path) class RecipeDataSource (line 301) | public sealed class RecipeDataSource method GetGroupsAsync (line 313) | public static async Task> GetGroupsAsync(... method GetGroupAsync (line 321) | public static async Task GetGroupAsync(string uniqueId) method GetItemAsync (line 330) | public static async Task GetItemAsync(string uniqueId) method EnsureRecipeDataLoaded (line 339) | private static async Task EnsureRecipeDataLoaded() method LoadLocalDataAsync (line 347) | public async Task LoadLocalDataAsync() method CreateRecipesAndRecipeGroups (line 360) | private static void CreateRecipesAndRecipeGroups(JsonArray array) method CreateRecipeGroup (line 424) | private static RecipeDataGroup CreateRecipeGroup(JsonObject obj) FILE: ShareContractExample/ContosoCookbook/DataModel/SampleDataSource.cs class SampleDataCommon (line 43) | [Windows.Foundation.Metadata.WebHostHidden] method SampleDataCommon (line 48) | public SampleDataCommon(String uniqueId, String title, String subtitle... method SetImage (line 105) | public void SetImage(String path) class SampleDataItem (line 116) | public class SampleDataItem : SampleDataCommon method SampleDataItem (line 118) | public SampleDataItem(String uniqueId, String title, String subtitle, ... class SampleDataGroup (line 167) | public class SampleDataGroup : SampleDataCommon method SampleDataGroup (line 169) | public SampleDataGroup(String uniqueId, String title, String subtitle,... class SampleDataSource (line 196) | public sealed class SampleDataSource method GetGroups (line 206) | public static IEnumerable GetGroups(string uniqueId) method GetGroup (line 213) | public static SampleDataGroup GetGroup(string uniqueId) method GetItem (line 221) | public static SampleDataItem GetItem(string uniqueId) method SampleDataSource (line 229) | public SampleDataSource() FILE: ShareContractExample/ContosoCookbook/GroupDetailPage.xaml.cs class GroupDetailPage (line 26) | public sealed partial class GroupDetailPage : Page method GroupDetailPage (line 48) | public GroupDetailPage() method navigationHelper_LoadState (line 69) | private async void navigationHelper_LoadState(object sender, LoadState... method OnNavigatedTo (line 89) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 94) | protected override void OnNavigatedFrom(NavigationEventArgs e) method lstRecipes_SelectionChanged (line 101) | private void lstRecipes_SelectionChanged(object sender, SelectionChang... FILE: ShareContractExample/ContosoCookbook/MainPage.xaml.cs class MainPage (line 24) | public sealed partial class MainPage : Page method MainPage (line 46) | public MainPage() method navigationHelper_LoadState (line 65) | private async void navigationHelper_LoadState(object sender, LoadState... method OnNavigatedTo (line 85) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 90) | protected override void OnNavigatedFrom(NavigationEventArgs e) method About_Click (line 97) | private void About_Click(object sender, RoutedEventArgs e) method lstGroups_SelectionChanged (line 102) | private void lstGroups_SelectionChanged(object sender, SelectionChange... FILE: ShareContractExample/ContosoCookbook/RecipeDetailPage.xaml.cs class RecipeDetailPage (line 25) | public sealed partial class RecipeDetailPage : Page method RecipeDetailPage (line 48) | public RecipeDetailPage() method navigationHelper_LoadState (line 69) | private async void navigationHelper_LoadState(object sender, LoadState... method OnShareDataRequested (line 82) | private async void OnShareDataRequested(DataTransferManager sender, Da... method OnNavigatedTo (line 126) | protected override void OnNavigatedTo(NavigationEventArgs e) method OnNavigatedFrom (line 131) | protected override void OnNavigatedFrom(NavigationEventArgs e) method btnPinToStart_Click (line 138) | private async void btnPinToStart_Click(object sender, RoutedEventArgs e) method btnReminderTimer_Click (line 164) | private async void btnReminderTimer_Click(object sender, RoutedEventAr... method btnPhoto_Click (line 187) | private async void btnPhoto_Click(object sender, RoutedEventArgs e) method PickPhotoAsync (line 192) | private async Task PickPhotoAsync() method btnShare_Click (line 212) | private void btnShare_Click(object sender, RoutedEventArgs e) FILE: SimplePushDemo/SimplePushDemo/App.xaml.cs class App (line 9) | sealed partial class App : Common.BootStrapper method App (line 11) | public App() : base() method OnLaunchedAsync (line 16) | public override async Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: SimplePushDemo/SimplePushDemo/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 51) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 52) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 53) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 54) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 55) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 56) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 57) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 59) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 67) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 69) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 118) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 137) | public virtual Task OnInitializeAsync() { return Task.FromResult RegisterForPushAsync() method channel_PushNotificationReceived (line 18) | static void channel_PushNotificationReceived(PushNotificationChannel s... FILE: SimplePushDemo/SimplePushDemo/Services/NavigationService/INavigatable.cs type INavigatable (line 6) | public interface INavigatable method OnNavigatedTo (line 8) | void OnNavigatedTo(string parameter, NavigationMode mode, Dictionary state, bool suspending); method OnNavigatingFrom (line 10) | void OnNavigatingFrom(NavigatingCancelEventArgs args); FILE: SimplePushDemo/SimplePushDemo/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: SimplePushDemo/SimplePushDemo/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: SimplePushDemo/SimplePushDemo/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | void NavigateFrom(bool suspending) method NavigateTo (line 36) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODO */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: SimplePushDemo/SimplePushDemo/Views/MainPage.xaml.cs class MainPage (line 23) | public sealed partial class MainPage : Page method MainPage (line 25) | public MainPage() FILE: SplashScreen/SplashScreen/SplashScreen-Blank/App.xaml.cs class App (line 26) | sealed partial class App : Application method App (line 37) | public App() method OnLaunched (line 48) | protected override async void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 98) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 110) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: SplashScreen/SplashScreen/SplashScreen-Blank/Views/MainPage.xaml.cs class MainPage (line 23) | public sealed partial class MainPage : Page method MainPage (line 25) | public MainPage() FILE: SplashScreen/SplashScreen/SplashScreen-Blank/Views/Splash.xaml.cs class Splash (line 10) | public sealed partial class Splash : Page method Splash (line 12) | public Splash(Windows.ApplicationModel.Activation.SplashScreen splashS... FILE: SplashScreen/SplashScreen/SplashScreen-Template10/App.xaml.cs class App (line 7) | sealed partial class App : Common.BootStrapper method App (line 9) | public App() : base() method OnLaunchedAsync (line 15) | public override async Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: SplashScreen/SplashScreen/SplashScreen-Template10/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 18) | public BootStrapper() method OnActivated (line 43) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 44) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 45) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 46) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 47) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 48) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 49) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 51) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 59) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 61) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnInitializeAsync (line 101) | public virtual Task OnInitializeAsync() { return Task.FromResult canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: SplitView/SplitView/SplitView-Blank/Views/AboutPage.xaml.cs class AboutPage (line 23) | public sealed partial class AboutPage : Page method AboutPage (line 25) | public AboutPage() FILE: SplitView/SplitView/SplitView-Blank/Views/MainPage.xaml.cs class MainPage (line 5) | public sealed partial class MainPage : Page method MainPage (line 7) | public MainPage() method GotoAbout (line 12) | private void GotoAbout(object sender, Windows.UI.Xaml.RoutedEventArgs e) FILE: SplitView/SplitView/SplitView-Blank/Views/PrivacyPage.xaml.cs class PrivacyPage (line 23) | public sealed partial class PrivacyPage : Page method PrivacyPage (line 25) | public PrivacyPage() FILE: SplitView/SplitView/SplitView-Blank/Views/SettingsPage.xaml.cs class SettingsPage (line 23) | public sealed partial class SettingsPage : Page method SettingsPage (line 25) | public SettingsPage() FILE: SplitView/SplitView/SplitView-Blank/Views/Shell.xaml.cs class Shell (line 12) | public sealed partial class Shell : Page method Shell (line 16) | public Shell(Frame frame) method CanBack (line 43) | private bool CanBack() method ExecuteBack (line 47) | private void ExecuteBack() method ExecuteMenu (line 55) | private void ExecuteMenu() method ExecuteNav (line 64) | private void ExecuteNav(NavType navType) method AllRadioButtons (line 81) | public List AllRadioButtons(DependencyObject parent) method DontCheck (line 98) | private void DontCheck(object s, RoutedEventArgs e) class NavType (line 105) | public class NavType FILE: SplitView/SplitView/SplitView-Template10/App.xaml.cs class App (line 8) | sealed partial class App : Common.BootStrapper method App (line 10) | public App() : base() method OnInitializeAsync (line 15) | public override Task OnInitializeAsync() method OnLaunchedAsync (line 22) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: SplitView/SplitView/SplitView-Template10/Common/BootStrapper.cs class BootStrapper (line 15) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnWindowCreated (line 46) | protected override void OnWindowCreated(WindowCreatedEventArgs args) method Dispatch (line 60) | public async void Dispatch(Action action) method OnActivated (line 70) | [Obsolete("Use OnStartAsync()")] method OnCachedFileUpdaterActivated (line 73) | [Obsolete("Use OnStartAsync()")] method OnFileActivated (line 76) | [Obsolete("Use OnStartAsync()")] method OnFileOpenPickerActivated (line 79) | [Obsolete("Use OnStartAsync()")] method OnFileSavePickerActivated (line 82) | [Obsolete("Use OnStartAsync()")] method OnSearchActivated (line 85) | [Obsolete("Use OnStartAsync()")] method OnShareTargetActivated (line 88) | [Obsolete("Use OnStartAsync()")] method InternalActivatedAsync (line 91) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 99) | [Obsolete("Use OnStartAsync()")] method InternalLaunchAsync (line 102) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method ClearState (line 184) | private void ClearState() method RaiseBackRequested (line 203) | private void RaiseBackRequested() method RaiseForwardRequested (line 215) | private void RaiseForwardRequested() type StartKind (line 229) | public enum StartKind { Launch, Activate } method OnStartAsync (line 230) | public abstract Task OnStartAsync(StartKind startKind, IActivatedEvent... method OnInitializeAsync (line 231) | public virtual Task OnInitializeAsync() { return Task.FromResult(ref T storage, T value, [CallerMemberName()]string ... FILE: SplitView/SplitView/SplitView-Template10/Mvvm/Command.cs class Command (line 8) | public class Command : System.Windows.Input.ICommand method Command (line 14) | public Command(Action execute, Func canexecute = null) method CanExecute (line 22) | [DebuggerStepThrough] method Execute (line 29) | public void Execute(object p) method RaiseCanExecuteChanged (line 37) | public void RaiseCanExecuteChanged() method Command (line 49) | public Command(Action execute, Func canexecute = null) method CanExecute (line 57) | [DebuggerStepThrough] method Execute (line 68) | public void Execute(object p) method RaiseCanExecuteChanged (line 76) | public void RaiseCanExecuteChanged() class Command (line 43) | public class Command : System.Windows.Input.ICommand method Command (line 14) | public Command(Action execute, Func canexecute = null) method CanExecute (line 22) | [DebuggerStepThrough] method Execute (line 29) | public void Execute(object p) method RaiseCanExecuteChanged (line 37) | public void RaiseCanExecuteChanged() method Command (line 49) | public Command(Action execute, Func canexecute = null) method CanExecute (line 57) | [DebuggerStepThrough] method Execute (line 68) | public void Execute(object p) method RaiseCanExecuteChanged (line 76) | public void RaiseCanExecuteChanged() FILE: SplitView/SplitView/SplitView-Template10/Mvvm/ViewModelBase.cs class ViewModelBase (line 9) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method ViewModelBase (line 11) | public ViewModelBase() method OnNavigatedTo (line 21) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFromAsync (line 22) | public virtual Task OnNavigatedFromAsync(IDictionary s... method OnNavigatingFrom (line 23) | public virtual void OnNavigatingFrom(Services.NavigationService.Naviga... FILE: SplitView/SplitView/SplitView-Template10/Services/KeyboardService/KeyboardEventArgs.cs class KeyboardEventArgs (line 11) | public class KeyboardEventArgs : EventArgs FILE: SplitView/SplitView/SplitView-Template10/Services/KeyboardService/KeyboardHelper.cs class KeyboardHelper (line 12) | public class KeyboardHelper method KeyboardHelper (line 14) | public KeyboardHelper() method CoreDispatcher_AcceleratorKeyActivated (line 20) | private void CoreDispatcher_AcceleratorKeyActivated(CoreDispatcher sen... method CoreWindow_PointerPressed (line 96) | private void CoreWindow_PointerPressed(CoreWindow sender, PointerEvent... method RaiseGoForwardGestured (line 117) | protected void RaiseGoForwardGestured() method RaiseGoBackGestured (line 124) | protected void RaiseGoBackGestured() method RaiseControlEGestured (line 131) | protected void RaiseControlEGestured() method ToChar (line 137) | private static char? ToChar(VirtualKey key, bool shift) type VKeyClass_EnUs (line 164) | enum VKeyClass_EnUs type VKeyCharacterClass (line 172) | public enum VKeyCharacterClass FILE: SplitView/SplitView/SplitView-Template10/Services/KeyboardService/KeyboardService.cs class KeyboardService (line 5) | public class KeyboardService method KeyboardService (line 9) | public KeyboardService() FILE: SplitView/SplitView/SplitView-Template10/Services/NavigationService/FrameFacade.cs class FrameFacade (line 11) | public class FrameFacade method FrameFacade (line 13) | public FrameFacade(Frame frame) method Navigate (line 31) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 33) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 35) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 41) | public void GoBack() { _frame.GoBack(); } method Refresh (line 43) | public void Refresh() method GoForward (line 53) | public void GoForward() { _frame.GoForward(); } method GetValue (line 61) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 63) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 65) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 91) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 123) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: SplitView/SplitView/SplitView-Template10/Services/NavigationService/INavigatable.cs type INavigatable (line 6) | public interface INavigatable method OnNavigatedTo (line 8) | void OnNavigatedTo(string parameter, NavigationMode mode, Dictionary state, bool suspending); method OnNavigatingFrom (line 10) | void OnNavigatingFrom(NavigatingCancelEventArgs args); FILE: SplitView/SplitView/SplitView-Template10/Services/NavigationService/NavigatedEventArgs.cs class NavigatedEventArgs (line 6) | public class NavigatedEventArgs : EventArgs method NavigatedEventArgs (line 8) | public NavigatedEventArgs() { } method NavigatedEventArgs (line 9) | public NavigatedEventArgs(NavigationEventArgs e) FILE: SplitView/SplitView/SplitView-Template10/Services/NavigationService/NavigatingEventArgs.cs class NavigatingEventArgs (line 5) | public class NavigatingEventArgs: NavigatedEventArgs method NavigatingEventArgs (line 7) | public NavigatingEventArgs() { } method NavigatingEventArgs (line 8) | public NavigatingEventArgs(NavigatingCancelEventArgs e) FILE: SplitView/SplitView/SplitView-Template10/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: SplitView/SplitView/SplitView-Template10/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: SplitView/SplitView/SplitView-Template10/Services/NavigationService/NavigationService.cs class NavigationService (line 11) | public class NavigationService method NavigationService (line 19) | public NavigationService(Frame frame) method State (line 40) | public Windows.Storage.ApplicationDataContainer State() method State (line 47) | public IPropertySet State(Type type) method NavigatingFrom (line 54) | bool NavigatingFrom(bool suspending) method NavigateFromAsync (line 75) | async Task NavigateFromAsync(bool suspending) method NavigateTo (line 88) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 115) | public bool Navigate(Type page, string parameter = null) method SaveNavigation (line 125) | public void SaveNavigation() method RestoreSavedNavigation (line 133) | public bool RestoreSavedNavigation() method GoBack (line 147) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 151) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 155) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Resuming (line 157) | public void Resuming() { /* nothing */ } method SuspendingAsync (line 159) | public async Task SuspendingAsync() method Show (line 165) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: SplitView/SplitView/SplitView-Template10/Views/AboutPage.xaml.cs class AboutPage (line 23) | public sealed partial class AboutPage : Page method AboutPage (line 25) | public AboutPage() FILE: SplitView/SplitView/SplitView-Template10/Views/MainPage.xaml.cs class MainPage (line 5) | public sealed partial class MainPage : Page method MainPage (line 7) | public MainPage() method GotoAbout (line 12) | private void GotoAbout(object sender, Windows.UI.Xaml.RoutedEventArgs e) FILE: SplitView/SplitView/SplitView-Template10/Views/PrivacyPage.xaml.cs class PrivacyPage (line 23) | public sealed partial class PrivacyPage : Page method PrivacyPage (line 25) | public PrivacyPage() FILE: SplitView/SplitView/SplitView-Template10/Views/SettingsPage.xaml.cs class SettingsPage (line 23) | public sealed partial class SettingsPage : Page method SettingsPage (line 25) | public SettingsPage() FILE: SplitView/SplitView/SplitView-Template10/Views/Shell.xaml.cs class Shell (line 12) | public sealed partial class Shell : Page method Shell (line 14) | public Shell(Frame frame) method CanBack (line 40) | private bool CanBack() method ExecuteBack (line 45) | private void ExecuteBack() method ExecuteMenu (line 54) | private void ExecuteMenu() method ExecuteNav (line 62) | private void ExecuteNav(NavType navType) method AllRadioButtons (line 77) | public List AllRadioButtons(DependencyObject parent) method DontCheck (line 94) | private void DontCheck(object s, RoutedEventArgs e) class NavType (line 101) | public class NavType FILE: SuspendResume/Blank1/App.xaml.cs class App (line 8) | sealed partial class App : Common.BootStrapper method App (line 10) | public App() method OnStartAsync (line 15) | public override Task OnStartAsync(StartKind startKind, IActivatedEvent... FILE: SuspendResume/Blank1/Common/BootStrapper.cs class BootStrapper (line 15) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 62) | [Obsolete("Use OnStartAsync()")] method OnCachedFileUpdaterActivated (line 65) | [Obsolete("Use OnStartAsync()")] method OnFileActivated (line 68) | [Obsolete("Use OnStartAsync()")] method OnFileOpenPickerActivated (line 71) | [Obsolete("Use OnStartAsync()")] method OnFileSavePickerActivated (line 74) | [Obsolete("Use OnStartAsync()")] method OnSearchActivated (line 77) | [Obsolete("Use OnStartAsync()")] method OnShareTargetActivated (line 80) | [Obsolete("Use OnStartAsync()")] method InternalActivatedAsync (line 83) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 91) | [Obsolete("Use OnStartAsync()")] method InternalLaunchAsync (line 94) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 173) | private void OnBackRequested() method OnForwardRequested (line 185) | private void OnForwardRequested() type StartKind (line 199) | public enum StartKind { Launch, Activate } method OnStartAsync (line 200) | public abstract Task OnStartAsync(StartKind startKind, IActivatedEvent... method OnInitializeAsync (line 201) | public virtual Task OnInitializeAsync() { return Task.FromResult(ref T storage, T value, [CallerMemberName()]string ... FILE: SuspendResume/Blank1/Mvvm/Command.cs class Command (line 8) | public class Command : System.Windows.Input.ICommand method Command (line 14) | public Command(Action execute, Func canexecute = null) method CanExecute (line 22) | [DebuggerStepThrough] method Execute (line 29) | public void Execute(object p) method RaiseCanExecuteChanged (line 37) | public void RaiseCanExecuteChanged() method Command (line 49) | public Command(Action execute, Func canexecute = null) method CanExecute (line 57) | [DebuggerStepThrough] method Execute (line 68) | public void Execute(object p) method RaiseCanExecuteChanged (line 76) | public void RaiseCanExecuteChanged() class Command (line 43) | public class Command : System.Windows.Input.ICommand method Command (line 14) | public Command(Action execute, Func canexecute = null) method CanExecute (line 22) | [DebuggerStepThrough] method Execute (line 29) | public void Execute(object p) method RaiseCanExecuteChanged (line 37) | public void RaiseCanExecuteChanged() method Command (line 49) | public Command(Action execute, Func canexecute = null) method CanExecute (line 57) | [DebuggerStepThrough] method Execute (line 68) | public void Execute(object p) method RaiseCanExecuteChanged (line 76) | public void RaiseCanExecuteChanged() FILE: SuspendResume/Blank1/Mvvm/ViewModelBase.cs class ViewModelBase (line 7) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedTo (line 9) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFromAsync (line 10) | public virtual Task OnNavigatedFromAsync(IDictionary s... method OnNavigatingFrom (line 11) | public virtual void OnNavigatingFrom(Services.NavigationService.Naviga... FILE: SuspendResume/Blank1/Services/KeyboardService/KeyboardEventArgs.cs class KeyboardEventArgs (line 11) | public class KeyboardEventArgs : EventArgs FILE: SuspendResume/Blank1/Services/KeyboardService/KeyboardHelper.cs class KeyboardHelper (line 12) | public class KeyboardHelper method KeyboardHelper (line 14) | public KeyboardHelper() method CoreDispatcher_AcceleratorKeyActivated (line 20) | private void CoreDispatcher_AcceleratorKeyActivated(CoreDispatcher sen... method CoreWindow_PointerPressed (line 96) | private void CoreWindow_PointerPressed(CoreWindow sender, PointerEvent... method RaiseGoForwardGestured (line 117) | protected void RaiseGoForwardGestured() method RaiseGoBackGestured (line 124) | protected void RaiseGoBackGestured() method RaiseControlEGestured (line 131) | protected void RaiseControlEGestured() method ToChar (line 137) | private static char? ToChar(VirtualKey key, bool shift) type VKeyClass_EnUs (line 164) | enum VKeyClass_EnUs type VKeyCharacterClass (line 172) | public enum VKeyCharacterClass FILE: SuspendResume/Blank1/Services/KeyboardService/KeyboardService.cs class KeyboardService (line 5) | public class KeyboardService method KeyboardService (line 9) | public KeyboardService() FILE: SuspendResume/Blank1/Services/NavigationService/FrameFacade.cs class FrameFacade (line 11) | public class FrameFacade method FrameFacade (line 13) | public FrameFacade(Frame frame) method Navigate (line 31) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 33) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 35) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 41) | public void GoBack() { _frame.GoBack(); } method Refresh (line 43) | public void Refresh() method GoForward (line 53) | public void GoForward() { _frame.GoForward(); } method GetValue (line 61) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 63) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 65) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 91) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 123) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: SuspendResume/Blank1/Services/NavigationService/INavigatable.cs type INavigatable (line 7) | public interface INavigatable method OnNavigatedTo (line 9) | void OnNavigatedTo(string parameter, NavigationMode mode, IDictionary<... method OnNavigatedFromAsync (line 10) | Task OnNavigatedFromAsync(IDictionary state, bool susp... method OnNavigatingFrom (line 11) | void OnNavigatingFrom(Services.NavigationService.NavigatingEventArgs a... FILE: SuspendResume/Blank1/Services/NavigationService/NavigatedEventArgs.cs class NavigatedEventArgs (line 6) | public class NavigatedEventArgs : EventArgs method NavigatedEventArgs (line 8) | public NavigatedEventArgs() { } method NavigatedEventArgs (line 9) | public NavigatedEventArgs(NavigationEventArgs e) FILE: SuspendResume/Blank1/Services/NavigationService/NavigatingEventArgs.cs class NavigatingEventArgs (line 5) | public class NavigatingEventArgs : NavigatedEventArgs method NavigatingEventArgs (line 7) | public NavigatingEventArgs() { } method NavigatingEventArgs (line 8) | public NavigatingEventArgs(NavigatingCancelEventArgs e) FILE: SuspendResume/Blank1/Services/NavigationService/NavigationService.cs class NavigationService (line 11) | public class NavigationService method NavigationService (line 19) | public NavigationService(Frame frame) method State (line 40) | public Windows.Storage.ApplicationDataContainer State() method State (line 47) | public IPropertySet State(Type type) method NavigatingFrom (line 54) | bool NavigatingFrom(bool suspending) method NavigateFromAsync (line 75) | async Task NavigateFromAsync(bool suspending) method NavigateTo (line 88) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 115) | public bool Navigate(Type page, string parameter = null) method SaveNavigation (line 125) | public void SaveNavigation() method RestoreSavedNavigation (line 133) | public bool RestoreSavedNavigation() method GoBack (line 147) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 151) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 155) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Resuming (line 157) | public void Resuming() { /* nothing */ } method SuspendingAsync (line 159) | public async Task SuspendingAsync() method Show (line 165) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: SuspendResume/Blank1/ViewModels/DetailsPageViewModel.cs class DetailsPageViewModel (line 11) | class DetailsPageViewModel : ViewModelBase method OnNavigatedTo (line 13) | public override void OnNavigatedTo(string parameter, NavigationMode mo... method OnNavigatedFromAsync (line 24) | public override Task OnNavigatedFromAsync(IDictionary ... FILE: SuspendResume/Blank1/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 3) | public class MainPageViewModel : Mvvm.ViewModelBase method Goto2 (line 8) | public void Goto2() FILE: SuspendResume/Blank1/Views/DetailsPage.xaml.cs class DetailsPage (line 23) | public sealed partial class DetailsPage : Page method DetailsPage (line 25) | public DetailsPage() FILE: SuspendResume/Blank1/Views/MainPage.xaml.cs class MainPage (line 5) | public sealed partial class MainPage : Page method MainPage (line 7) | public MainPage() FILE: TODOFileHandlingSample/TODOFileHandlingSample/App.xaml.cs class App (line 8) | sealed partial class App : Common.BootStrapper method App (line 10) | public App() : base() method OnLaunchedAsync (line 15) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) method OnSuspendingAsync (line 21) | protected async override Task OnSuspendingAsync(object s, SuspendingEv... FILE: TODOFileHandlingSample/TODOFileHandlingSample/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 51) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 52) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 53) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 54) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 55) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 56) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 57) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 59) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 67) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 69) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 118) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 137) | public virtual Task OnInitializeAsync() { return Task.FromResult(ref T storage, T value, [CallerMemberName()]string ... FILE: TODOFileHandlingSample/TODOFileHandlingSample/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: TODOFileHandlingSample/TODOFileHandlingSample/Mvvm/ViewModelBase.cs class ViewModelBase (line 8) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedToAsync (line 10) | public virtual Task OnNavigatedToAsync(string parameter, NavigationMod... method OnNavigatedFromAsync (line 15) | public virtual Task OnNavigatedFromAsync(Dictionary st... FILE: TODOFileHandlingSample/TODOFileHandlingSample/Repositories/TodoItemRepository.cs class TodoItemRepository (line 9) | public class TodoItemRepository method Factory (line 11) | public Models.TodoItem Factory(string key = null, bool? complete = nul... method Clone (line 21) | public Models.TodoItem Clone(Models.TodoItem item) method Sample (line 32) | public IEnumerable Sample(int count = 5) FILE: TODOFileHandlingSample/TODOFileHandlingSample/Repositories/TodoListRepository.cs class TodoListRepository (line 9) | public class TodoListRepository method TodoListRepository (line 16) | public TodoListRepository() method GetAsync (line 22) | public async Task> GetAsync() method GetAsync (line 27) | public async Task GetAsync(string key) method SaveAsync (line 32) | public async Task SaveAsync(List list) method Factory (line 37) | public Models.TodoList Factory(string key = null, string title = null,... method Clone (line 47) | public Models.TodoList Clone(Models.TodoList list) method Sample (line 57) | public IEnumerable Sample(int count = 5) FILE: TODOFileHandlingSample/TODOFileHandlingSample/Services/FileService/FileHelper.cs class FileHelper (line 11) | class FileHelper method FileExistsAsync (line 17) | public async Task FileExistsAsync(string key, StorageStrategies ... method FileExistsAsync (line 22) | public async Task FileExistsAsync(string key, Windows.Storage.St... method DeleteFileAsync (line 30) | public async Task DeleteFileAsync(string key, StorageStrategies ... method ReadFileAsync (line 43) | public async Task ReadFileAsync(string key, StorageStrategies lo... method WriteFileAsync (line 68) | public async Task WriteFileAsync(string key, T value, Storage... method CreateFileAsync (line 96) | private async Task CreateFileAsync(string... method GetIfFileExistsAsync (line 112) | private async Task GetIfFileExistsAsync(s... method GetIfFileExistsAsync (line 132) | private async Task GetIfFileExistsAsync(s... method Serialize (line 163) | private string Serialize(T item) method Deserialize (line 173) | private T Deserialize(string json) type StorageStrategies (line 178) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: TODOFileHandlingSample/TODOFileHandlingSample/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadAsync (line 13) | public async Task> ReadAsync(string key) method WriteAsync (line 19) | public async Task WriteAsync(string key, List items) FILE: TODOFileHandlingSample/TODOFileHandlingSample/Services/NavigationService/INavigatable.cs type INavigatable (line 7) | public interface INavigatable method OnNavigatedToAsync (line 9) | Task OnNavigatedToAsync(string parameter, NavigationMode mode, Diction... method OnNavigatedFromAsync (line 10) | Task OnNavigatedFromAsync(Dictionary state, bool suspe... FILE: TODOFileHandlingSample/TODOFileHandlingSample/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: TODOFileHandlingSample/TODOFileHandlingSample/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: TODOFileHandlingSample/TODOFileHandlingSample/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | async void NavigateFrom(bool suspending) method NavigateTo (line 36) | async void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODOFileHandlingSample */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public async void Show(SettingsFlyout flyout, string parameter = null) FILE: TODOFileHandlingSample/TODOFileHandlingSample/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 11) | public class MainPageViewModel : Mvvm.ViewModelBase method MainPageViewModel (line 15) | public MainPageViewModel() method OnNavigatedToAsync (line 36) | public override Task OnNavigatedToAsync(string parameter, NavigationMo... method OnNavigatedFromAsync (line 42) | public override async Task OnNavigatedFromAsync(Dictionary(ref T storage, T value, [CallerMemberName()]string ... FILE: TODOFilePickerSample/TODOFilePickerSample/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: TODOFilePickerSample/TODOFilePickerSample/Mvvm/ViewModelBase.cs class ViewModelBase (line 7) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedTo (line 9) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFrom (line 11) | public virtual void OnNavigatedFrom(Dictionary state, ... FILE: TODOFilePickerSample/TODOFilePickerSample/Repositories/TodoItemRepository.cs class TodoItemRepository (line 9) | public class TodoItemRepository method Factory (line 11) | public Models.TodoItem Factory(string key = null, bool? complete = nul... method Clone (line 22) | public Models.TodoItem Clone(Models.TodoItem item) method Sample (line 34) | public IEnumerable Sample(int count = 5) FILE: TODOFilePickerSample/TODOFilePickerSample/Repositories/TodoListRepository.cs class TodoListRepository (line 9) | public class TodoListRepository method TodoListRepository (line 16) | public TodoListRepository() method GetAsync (line 22) | public async Task> GetAsync() method GetAsync (line 27) | public async Task GetAsync(string key) method SaveAsync (line 32) | public async Task SaveAsync(List list) method Factory (line 37) | public Models.TodoList Factory(string key = null, string title = null,... method Clone (line 47) | public Models.TodoList Clone(Models.TodoList list) method Sample (line 57) | public IEnumerable Sample(int count = 5) FILE: TODOFilePickerSample/TODOFilePickerSample/Services/FileService/FileHelper.cs class FileHelper (line 10) | class FileHelper method FileExistsAsync (line 16) | public async Task FileExistsAsync(string key, StorageStrategies ... method FileExistsAsync (line 21) | public async Task FileExistsAsync(string key, Windows.Storage.St... method DeleteFileAsync (line 29) | public async Task DeleteFileAsync(string key, StorageStrategies ... method ReadFileAsync (line 42) | public async Task ReadFileAsync(string key, StorageStrategies lo... method WriteFileAsync (line 67) | public async Task WriteFileAsync(string key, T value, Storage... method CreateFileAsync (line 79) | private async Task CreateFileAsync(string... method GetIfFileExistsAsync (line 95) | private async Task GetIfFileExistsAsync(s... method GetIfFileExistsAsync (line 115) | private async Task GetIfFileExistsAsync(s... method Serialize (line 146) | private string Serialize(T item) method Deserialize (line 156) | private T Deserialize(string json) type StorageStrategies (line 161) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: TODOFilePickerSample/TODOFilePickerSample/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadAsync (line 13) | public async Task> ReadAsync(string key) method WriteAsync (line 19) | public async Task WriteAsync(string key, List items) FILE: TODOFilePickerSample/TODOFilePickerSample/Services/NavigationService/INavigatable.cs type INavigatable (line 6) | public interface INavigatable method OnNavigatedTo (line 8) | void OnNavigatedTo(string parameter, NavigationMode mode, Dictionary state, bool suspending); FILE: TODOFilePickerSample/TODOFilePickerSample/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: TODOFilePickerSample/TODOFilePickerSample/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: TODOFilePickerSample/TODOFilePickerSample/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | void NavigateFrom(bool suspending) method NavigateTo (line 36) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODOFilePickerSample */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: TODOFilePickerSample/TODOFilePickerSample/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 13) | public class MainPageViewModel : Mvvm.ViewModelBase method MainPageViewModel (line 17) | public MainPageViewModel() method OnNavigatedTo (line 38) | public override void OnNavigatedTo(string parameter, NavigationMode mo... method OnNavigatedFrom (line 43) | public override void OnNavigatedFrom(Dictionary state,... method CanExecuteAddListCommand (line 58) | private bool CanExecuteAddListCommand() { return !Busy; } method ExecuteAddListCommand (line 59) | private void ExecuteAddListCommand() method CanExecuteRemoveListCommand (line 72) | private bool CanExecuteRemoveListCommand(ViewModels.TodoListViewModel ... method ExecuteRemoveListCommand (line 73) | private void ExecuteRemoveListCommand(ViewModels.TodoListViewModel list) method CanExecuteLoadCommand (line 86) | private bool CanExecuteLoadCommand() { return !Busy; } method ExecuteLoadCommand (line 87) | private async void ExecuteLoadCommand() method CanExecuteSaveCommand (line 105) | private bool CanExecuteSaveCommand() { return true; } method ExecuteSaveCommand (line 106) | private async void ExecuteSaveCommand() FILE: TODOFilePickerSample/TODOFilePickerSample/ViewModels/TodoItemViewModel.cs class TodoItemViewModel (line 13) | public class TodoItemViewModel : Mvvm.ViewModelBase method TodoItemViewModel (line 15) | public TodoItemViewModel(Models.TodoItem todo) method CanExecuteSelectPictureCommand (line 30) | private bool CanExecuteSelectPictureCommand() { return !Busy; } method ExecuteSelectPictureCommand (line 31) | private async void ExecuteSelectPictureCommand() method CanExecuteTakePictureCommand (line 61) | private bool CanExecuteTakePictureCommand() { return !Busy && Windows.... method ExecuteTakePictureCommand (line 62) | private async void ExecuteTakePictureCommand() FILE: TODOFilePickerSample/TODOFilePickerSample/ViewModels/TodoListViewModel.cs class TodoListViewModel (line 6) | public class TodoListViewModel : Mvvm.ViewModelBase method TodoListViewModel (line 10) | public TodoListViewModel(Models.TodoList list) method CanExecuteAddCommand (line 35) | private bool CanExecuteAddCommand(string title) { return true; } method ExecuteAddCommand (line 36) | private void ExecuteAddCommand(string title) method CanExecuteRemoveCommand (line 51) | private bool CanExecuteRemoveCommand(Models.TodoItem param) { return t... method ExecuteRemoveCommand (line 52) | private void ExecuteRemoveCommand(Models.TodoItem param) FILE: TODOFilePickerSample/TODOFilePickerSample/Views/MainPage.xaml.cs class MainPage (line 9) | public sealed partial class MainPage : Page method MainPage (line 11) | public MainPage() method TodoItem_ItemClicked (line 19) | private async void TodoItem_ItemClicked(object sender, ItemClickEventA... method List_Tapped (line 30) | private async void List_Tapped(object sender, Windows.UI.Xaml.Input.Ta... method AddNewItemConfirmButton_Loaded (line 44) | private void AddNewItemConfirmButton_Loaded(object sender, RoutedEvent... method TextBox_KeyDown (line 51) | private void TextBox_KeyDown(object sender, Windows.UI.Xaml.Input.KeyR... method CreateNewToDoItem (line 79) | private void CreateNewToDoItem(TextBox textBox) method AddNewItemConfirmButton_Click (line 90) | private void AddNewItemConfirmButton_Click(object sender, RoutedEventA... method EditListButtonClicked (line 98) | private async void EditListButtonClicked(object sender, RoutedEventArg... method DeleteListConfirmationButtonClicked (line 104) | private void DeleteListConfirmationButtonClicked(object sender, Routed... method DeleteItemClicked (line 114) | private void DeleteItemClicked(ContentDialog sender, ContentDialogButt... FILE: TODOFilePickerSample/TODOFilePickerSample/Views/ToDoEditorContentDialog.xaml.cs class ToDoEditorContentDialog (line 10) | public sealed partial class ToDoEditorContentDialog : ContentDialog method ToDoEditorContentDialog (line 12) | public ToDoEditorContentDialog() method OnGotFocus (line 17) | protected override void OnGotFocus(RoutedEventArgs e) method DeleteItemClicked (line 30) | private void DeleteItemClicked(ContentDialog sender, ContentDialogButt... FILE: TODOPivot/TODOPivot/App.xaml.cs class App (line 7) | sealed partial class App : Common.BootStrapper method App (line 9) | public App() : base() method OnLaunchedAsync (line 14) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: TODOPivot/TODOPivot/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 51) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 52) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 53) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 54) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 55) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 56) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 57) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 59) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 67) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 69) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 118) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 137) | public virtual Task OnInitializeAsync() { return Task.FromResult(ref T storage, T value, [CallerMemberName()]string ... FILE: TODOPivot/TODOPivot/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: TODOPivot/TODOPivot/Mvvm/ViewModelBase.cs class ViewModelBase (line 7) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedTo (line 9) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFrom (line 11) | public virtual void OnNavigatedFrom(Dictionary state, ... FILE: TODOPivot/TODOPivot/Repositories/TodoItemRepository.cs class TodoItemRepository (line 9) | public class TodoItemRepository method Factory (line 11) | public Models.TodoItem Factory(string key = null, bool? complete = nul... method Clone (line 21) | public Models.TodoItem Clone(Models.TodoItem item) method Sample (line 32) | public IEnumerable Sample(int count = 5) FILE: TODOPivot/TODOPivot/Repositories/TodoListRepository.cs class TodoListRepository (line 9) | public class TodoListRepository method TodoListRepository (line 16) | public TodoListRepository() method GetAsync (line 22) | public async Task> GetAsync() method GetAsync (line 27) | public async Task GetAsync(string key) method SaveAsync (line 32) | public async Task SaveAsync(List list) method Factory (line 37) | public Models.TodoList Factory(string key = null, string title = null,... method Clone (line 47) | public Models.TodoList Clone(Models.TodoList list) method Sample (line 57) | public IEnumerable Sample(int count = 5) FILE: TODOPivot/TODOPivot/Services/FileService/FileHelper.cs class FileHelper (line 10) | class FileHelper method FileExistsAsync (line 16) | public async Task FileExistsAsync(string key, StorageStrategies ... method FileExistsAsync (line 21) | public async Task FileExistsAsync(string key, Windows.Storage.St... method DeleteFileAsync (line 29) | public async Task DeleteFileAsync(string key, StorageStrategies ... method ReadFileAsync (line 42) | public async Task ReadFileAsync(string key, StorageStrategies lo... method WriteFileAsync (line 67) | public async Task WriteFileAsync(string key, T value, Storage... method CreateFileAsync (line 79) | private async Task CreateFileAsync(string... method GetIfFileExistsAsync (line 95) | private async Task GetIfFileExistsAsync(s... method GetIfFileExistsAsync (line 115) | private async Task GetIfFileExistsAsync(s... method Serialize (line 146) | private string Serialize(T item) method Deserialize (line 156) | private T Deserialize(string json) type StorageStrategies (line 161) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: TODOPivot/TODOPivot/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadAsync (line 13) | public async Task> ReadAsync(string key) method WriteAsync (line 19) | public async Task WriteAsync(string key, List items) FILE: TODOPivot/TODOPivot/Services/NavigationService/INavigatable.cs type INavigatable (line 6) | public interface INavigatable method OnNavigatedTo (line 8) | void OnNavigatedTo(string parameter, NavigationMode mode, Dictionary state, bool suspending); FILE: TODOPivot/TODOPivot/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: TODOPivot/TODOPivot/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: TODOPivot/TODOPivot/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | void NavigateFrom(bool suspending) method NavigateTo (line 36) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODOPivot */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: TODOPivot/TODOPivot/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 11) | public class MainPageViewModel : Mvvm.ViewModelBase method MainPageViewModel (line 15) | public MainPageViewModel() method OnNavigatedTo (line 36) | public override void OnNavigatedTo(string parameter, NavigationMode mo... method OnNavigatedFrom (line 41) | public override void OnNavigatedFrom(Dictionary state,... method CanExecuteAddListCommand (line 56) | private bool CanExecuteAddListCommand() { return !Busy; } method ExecuteAddListCommand (line 57) | private void ExecuteAddListCommand() method CanExecuteRemoveListCommand (line 70) | private bool CanExecuteRemoveListCommand(ViewModels.TodoListViewModel ... method ExecuteRemoveListCommand (line 71) | private void ExecuteRemoveListCommand(ViewModels.TodoListViewModel list) method CanExecuteLoadCommand (line 84) | private bool CanExecuteLoadCommand() { return !Busy; } method ExecuteLoadCommand (line 85) | private async void ExecuteLoadCommand() method CanExecuteSaveCommand (line 103) | private bool CanExecuteSaveCommand() { return true; } method ExecuteSaveCommand (line 104) | private async void ExecuteSaveCommand() FILE: TODOPivot/TODOPivot/ViewModels/TodoItemViewModel.cs class TodoItemViewModel (line 8) | public class TodoItemViewModel : Mvvm.ViewModelBase method TodoItemViewModel (line 10) | public TodoItemViewModel(Models.TodoItem todo) FILE: TODOPivot/TODOPivot/ViewModels/TodoListViewModel.cs class TodoListViewModel (line 6) | public class TodoListViewModel : Mvvm.ViewModelBase method TodoListViewModel (line 10) | public TodoListViewModel(Models.TodoList list) method CanExecuteAddCommand (line 35) | private bool CanExecuteAddCommand(string title) { return true; } method ExecuteAddCommand (line 36) | private void ExecuteAddCommand(string title) method CanExecuteRemoveCommand (line 51) | private bool CanExecuteRemoveCommand(Models.TodoItem param) { return t... method ExecuteRemoveCommand (line 52) | private void ExecuteRemoveCommand(Models.TodoItem param) FILE: TODOPivot/TODOPivot/Views/MainPage.xaml.cs class MainPage (line 9) | public sealed partial class MainPage : Page method MainPage (line 11) | public MainPage() method TodoItem_ItemClicked (line 20) | private async void TodoItem_ItemClicked(object sender, ItemClickEventA... method List_Tapped (line 34) | private async void List_Tapped(object sender, Windows.UI.Xaml.Input.Ta... method AddNewItemConfirmButton_Loaded (line 49) | private void AddNewItemConfirmButton_Loaded(object sender, RoutedEvent... method TextBox_KeyDown (line 56) | private void TextBox_KeyDown(object sender, Windows.UI.Xaml.Input.KeyR... method CreateNewToDoItem (line 84) | private void CreateNewToDoItem(TextBox textBox) method AddNewItemConfirmButton_Click (line 95) | private void AddNewItemConfirmButton_Click(object sender, RoutedEventA... method EditListButtonClicked (line 103) | private async void EditListButtonClicked(object sender, RoutedEventArg... method DeleteListConfirmationButtonClicked (line 109) | private void DeleteListConfirmationButtonClicked(object sender, Routed... method DeleteItemClicked (line 119) | private void DeleteItemClicked(ContentDialog sender, ContentDialogButt... FILE: TODOPivot/TODOPivot/Views/ToDoEditorContentDialog.xaml.cs class ToDoEditorContentDialog (line 21) | public sealed partial class ToDoEditorContentDialog : ContentDialog method ToDoEditorContentDialog (line 23) | public ToDoEditorContentDialog() method DeleteItemClicked (line 30) | private void DeleteItemClicked(ContentDialog sender, ContentDialogButt... FILE: TODOSQLiteSample/TODOSQLiteSample/App.xaml.cs class App (line 9) | sealed partial class App : Common.BootStrapper method App (line 11) | public App() : base() method OnLaunchedAsync (line 16) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) method OnSuspendingAsync (line 26) | protected async override Task OnSuspendingAsync(object s, SuspendingEv... FILE: TODOSQLiteSample/TODOSQLiteSample/Common/BootStrapper.cs class BootStrapper (line 16) | public abstract class BootStrapper : Application method BootStrapper (line 26) | public BootStrapper() method OnActivated (line 51) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 52) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 53) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 54) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 55) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 56) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 57) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 59) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 67) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 69) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 118) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 137) | public virtual Task OnInitializeAsync() { return Task.FromResult(ref T storage, T value, [CallerMemberName()]string ... FILE: TODOSQLiteSample/TODOSQLiteSample/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: TODOSQLiteSample/TODOSQLiteSample/Mvvm/ViewModelBase.cs class ViewModelBase (line 8) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedToAsync (line 10) | public virtual Task OnNavigatedToAsync(string parameter, NavigationMod... method OnNavigatedFromAsync (line 15) | public virtual Task OnNavigatedFromAsync(Dictionary st... FILE: TODOSQLiteSample/TODOSQLiteSample/Repositories/TableSQLiteRepoBase.cs class TableSQLiteRepoBase (line 13) | public abstract class TableSQLiteRepoBase method GetSelectAllSql (line 15) | protected abstract string GetSelectAllSql(); method FillSelectAllStatement (line 16) | protected abstract void FillSelectAllStatement(ISQLiteStatement statem... method CreateItem (line 18) | protected abstract TItemType CreateItem(ISQLiteStatement statement); method GetSelectItemSql (line 20) | protected abstract string GetSelectItemSql(); method FillSelectItemStatement (line 21) | protected abstract void FillSelectItemStatement(ISQLiteStatement state... method GetDeleteItemSql (line 23) | protected abstract string GetDeleteItemSql(); method FillDeleteItemStatement (line 24) | protected abstract void FillDeleteItemStatement(ISQLiteStatement state... method GetInsertItemSql (line 26) | protected abstract string GetInsertItemSql(); method FillInsertStatement (line 27) | protected abstract void FillInsertStatement(ISQLiteStatement statement... method GetUpdateItemSql (line 29) | protected abstract string GetUpdateItemSql(); method FillUpdateStatement (line 30) | protected abstract void FillUpdateStatement(ISQLiteStatement statement... method GetAllItems (line 47) | public ObservableCollection GetAllItems() method GetItem (line 64) | public TItemType GetItem(TKeyType key) method InsertItem (line 81) | public void InsertItem(TItemType item) method UpdateItem (line 91) | public void UpdateItem(TKeyType key, TItemType item) method DeleteItem (line 101) | public void DeleteItem(TKeyType key) FILE: TODOSQLiteSample/TODOSQLiteSample/Repositories/TodoItemRepository.cs class TodoItemRepository (line 11) | public class TodoItemRepository : TableSQLiteRepoBase method Factory (line 13) | public Models.TodoItem Factory(string key = null, bool? complete = nul... method Clone (line 23) | public Models.TodoItem Clone(Models.TodoItem item) method Sample (line 34) | public IEnumerable Sample(int count = 5) method TodoItemRepository (line 49) | private TodoItemRepository(string todoListId) method TodoItemRepository (line 54) | private TodoItemRepository() method GetForToDoListId (line 81) | public static TodoItemRepository GetForToDoListId(string todoListId) method GetDefault (line 92) | public static TodoItemRepository GetDefault() method GetSelectAllSql (line 105) | protected override string GetSelectAllSql() method FillSelectAllStatement (line 118) | protected override void FillSelectAllStatement(ISQLiteStatement statem... method CreateItem (line 126) | protected override TodoItem CreateItem(ISQLiteStatement statement) method GetSelectItemSql (line 143) | protected override string GetSelectItemSql() method FillSelectItemStatement (line 150) | protected override void FillSelectItemStatement(ISQLiteStatement state... method GetDeleteItemSql (line 155) | protected override string GetDeleteItemSql() method FillDeleteItemStatement (line 160) | protected override void FillDeleteItemStatement(ISQLiteStatement state... method GetInsertItemSql (line 165) | protected override string GetInsertItemSql() method FillInsertStatement (line 170) | protected override void FillInsertStatement(ISQLiteStatement statement... method GetUpdateItemSql (line 181) | protected override string GetUpdateItemSql() method FillUpdateStatement (line 186) | protected override void FillUpdateStatement(ISQLiteStatement statement... FILE: TODOSQLiteSample/TODOSQLiteSample/Repositories/TodoListRepository.cs class TodoListRepository (line 12) | public class TodoListRepository : TableSQLiteRepoBase method TodoListRepository (line 29) | private TodoListRepository() method GetDefault (line 35) | public static TodoListRepository GetDefault() method Factory (line 46) | public Models.TodoList Factory(string key = null, string title = null,... method Clone (line 56) | public Models.TodoList Clone(Models.TodoList list) method Sample (line 66) | public IEnumerable Sample(int count = 5) method GetSelectAllSql (line 83) | protected override string GetSelectAllSql() method FillSelectAllStatement (line 88) | protected override void FillSelectAllStatement(ISQLiteStatement statem... method CreateItem (line 93) | protected override TodoList CreateItem(ISQLiteStatement statement) method GetSelectItemSql (line 105) | protected override string GetSelectItemSql() method FillSelectItemStatement (line 110) | protected override void FillSelectItemStatement(ISQLiteStatement state... method GetDeleteItemSql (line 115) | protected override string GetDeleteItemSql() method FillDeleteItemStatement (line 120) | protected override void FillDeleteItemStatement(ISQLiteStatement state... method GetInsertItemSql (line 125) | protected override string GetInsertItemSql() method FillInsertStatement (line 130) | protected override void FillInsertStatement(ISQLiteStatement statement... method GetUpdateItemSql (line 137) | protected override string GetUpdateItemSql() method FillUpdateStatement (line 142) | protected override void FillUpdateStatement(ISQLiteStatement statement... FILE: TODOSQLiteSample/TODOSQLiteSample/Services/FileService/FileHelper.cs class FileHelper (line 11) | class FileHelper method FileExistsAsync (line 17) | public async Task FileExistsAsync(string key, StorageStrategies ... method FileExistsAsync (line 22) | public async Task FileExistsAsync(string key, Windows.Storage.St... method DeleteFileAsync (line 30) | public async Task DeleteFileAsync(string key, StorageStrategies ... method ReadFileAsync (line 43) | public async Task ReadFileAsync(string key, StorageStrategies lo... method WriteFileAsync (line 68) | public async Task WriteFileAsync(string key, T value, Storage... method CreateFileAsync (line 96) | private async Task CreateFileAsync(string... method GetIfFileExistsAsync (line 112) | private async Task GetIfFileExistsAsync(s... method GetIfFileExistsAsync (line 132) | private async Task GetIfFileExistsAsync(s... method Serialize (line 163) | private string Serialize(T item) method Deserialize (line 173) | private T Deserialize(string json) type StorageStrategies (line 178) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: TODOSQLiteSample/TODOSQLiteSample/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadAsync (line 13) | public async Task> ReadAsync(string key) method WriteAsync (line 19) | public async Task WriteAsync(string key, List items) FILE: TODOSQLiteSample/TODOSQLiteSample/Services/NavigationService/INavigatable.cs type INavigatable (line 7) | public interface INavigatable method OnNavigatedToAsync (line 9) | Task OnNavigatedToAsync(string parameter, NavigationMode mode, Diction... method OnNavigatedFromAsync (line 10) | Task OnNavigatedFromAsync(Dictionary state, bool suspe... FILE: TODOSQLiteSample/TODOSQLiteSample/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: TODOSQLiteSample/TODOSQLiteSample/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: TODOSQLiteSample/TODOSQLiteSample/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | async void NavigateFrom(bool suspending) method NavigateTo (line 36) | async void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODOSQLiteSample */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public async void Show(SettingsFlyout flyout, string parameter = null) FILE: TODOSQLiteSample/TODOSQLiteSample/Services/SQLiteService/SQLiteService.cs class SQLiteService (line 10) | class SQLiteService method LoadDatabase (line 14) | public static void LoadDatabase() FILE: TODOSQLiteSample/TODOSQLiteSample/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 11) | public class MainPageViewModel : Mvvm.ViewModelBase method MainPageViewModel (line 15) | public MainPageViewModel() method OnNavigatedToAsync (line 36) | public override Task OnNavigatedToAsync(string parameter, NavigationMo... method CanExecuteAddListCommand (line 58) | private bool CanExecuteAddListCommand() { return !Busy; } method ExecuteAddListCommand (line 59) | private void ExecuteAddListCommand() method CanExecuteUpdateListCommand (line 73) | private bool CanExecuteUpdateListCommand(ViewModels.TodoListViewModel ... method ExecuteUpdateListCommand (line 74) | private void ExecuteUpdateListCommand(ViewModels.TodoListViewModel list) method CanExecuteRemoveListCommand (line 85) | private bool CanExecuteRemoveListCommand(ViewModels.TodoListViewModel ... method ExecuteRemoveListCommand (line 86) | private void ExecuteRemoveListCommand(ViewModels.TodoListViewModel list) method CanExecuteLoadCommand (line 99) | private bool CanExecuteLoadCommand() { return !Busy; } method ExecuteLoadCommand (line 100) | private void ExecuteLoadCommand() FILE: TODOSQLiteSample/TODOSQLiteSample/ViewModels/TodoItemViewModel.cs class TodoItemViewModel (line 10) | public class TodoItemViewModel : Mvvm.ViewModelBase method TodoItemViewModel (line 12) | public TodoItemViewModel(TodoItem todo) FILE: TODOSQLiteSample/TODOSQLiteSample/ViewModels/TodoListViewModel.cs class TodoListViewModel (line 10) | public class TodoListViewModel : Mvvm.ViewModelBase method TodoListViewModel (line 12) | public TodoListViewModel(Models.TodoList list) method CanExecuteAddCommand (line 47) | private bool CanExecuteAddCommand(string title) { return true; } method ExecuteAddCommand (line 48) | private void ExecuteAddCommand(string title) method CanExecuteUpdateItemCommand (line 70) | private bool CanExecuteUpdateItemCommand(ViewModels.TodoItemViewModel ... method ExecuteUpdateItemCommand (line 71) | private void ExecuteUpdateItemCommand(ViewModels.TodoItemViewModel item) method CanExecuteRemoveCommand (line 85) | private bool CanExecuteRemoveCommand(Models.TodoItem param) { return t... method ExecuteRemoveCommand (line 86) | private void ExecuteRemoveCommand(Models.TodoItem param) FILE: TODOSQLiteSample/TODOSQLiteSample/Views/MainPage.xaml.cs class MainPage (line 9) | public sealed partial class MainPage : Page method MainPage (line 11) | public MainPage() method TodoItem_ItemClicked (line 19) | private async void TodoItem_ItemClicked(object sender, ItemClickEventA... method AddNewItemConfirmButton_Loaded (line 36) | private void AddNewItemConfirmButton_Loaded(object sender, RoutedEvent... method TextBox_KeyDown (line 43) | private void TextBox_KeyDown(object sender, Windows.UI.Xaml.Input.KeyR... method CreateNewToDoItem (line 71) | private void CreateNewToDoItem(TextBox textBox) method AddNewItemConfirmButton_Click (line 82) | private void AddNewItemConfirmButton_Click(object sender, RoutedEventA... method EditListButtonClicked (line 90) | private async void EditListButtonClicked(object sender, RoutedEventArg... method DeleteListConfirmationButtonClicked (line 103) | private void DeleteListConfirmationButtonClicked(object sender, Routed... FILE: TODOSQLiteSample/TODOSQLiteSample/Views/ToDoEditorContentDialog.xaml.cs class ToDoEditorContentDialog (line 21) | public sealed partial class ToDoEditorContentDialog : ContentDialog method ToDoEditorContentDialog (line 23) | public ToDoEditorContentDialog() method DeleteItemClicked (line 30) | private void DeleteItemClicked(ContentDialog sender, ContentDialogButt... FILE: VideoInterstitialAd/HelloWorld/App.xaml.cs class App (line 7) | sealed partial class App : Common.BootStrapper method App (line 9) | public App() : base() method OnLaunchedAsync (line 14) | public override Task OnLaunchedAsync(ILaunchActivatedEventArgs e) FILE: VideoInterstitialAd/HelloWorld/Common/BootStrapper.cs class BootStrapper (line 17) | public abstract class BootStrapper : Application method BootStrapper (line 27) | public BootStrapper() method OnActivated (line 54) | protected override async void OnActivated(IActivatedEventArgs e) { awa... method OnCachedFileUpdaterActivated (line 55) | protected override async void OnCachedFileUpdaterActivated(CachedFileU... method OnFileActivated (line 56) | protected override async void OnFileActivated(FileActivatedEventArgs a... method OnFileOpenPickerActivated (line 57) | protected override async void OnFileOpenPickerActivated(FileOpenPicker... method OnFileSavePickerActivated (line 58) | protected override async void OnFileSavePickerActivated(FileSavePicker... method OnSearchActivated (line 59) | protected override async void OnSearchActivated(SearchActivatedEventAr... method OnShareTargetActivated (line 60) | protected override async void OnShareTargetActivated(ShareTargetActiva... method InternalActivatedAsync (line 62) | private async Task InternalActivatedAsync(IActivatedEventArgs e) method OnLaunched (line 70) | protected override void OnLaunched(LaunchActivatedEventArgs e) { Inter... method InternalLaunchAsync (line 72) | private async void InternalLaunchAsync(ILaunchActivatedEventArgs e) method OnBackRequested (line 121) | private void OnBackRequested(object sender, Windows.UI.Core.BackReques... method OnInitializeAsync (line 140) | public virtual Task OnInitializeAsync() { return Task.FromResult(ref T storage, T value, [CallerMemberName()]string ... FILE: VideoInterstitialAd/HelloWorld/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: VideoInterstitialAd/HelloWorld/Mvvm/ViewModelBase.cs class ViewModelBase (line 7) | public abstract class ViewModelBase : BindableBase, Services.NavigationS... method OnNavigatedTo (line 9) | public virtual void OnNavigatedTo(string parameter, NavigationMode mod... method OnNavigatedFrom (line 11) | public virtual void OnNavigatedFrom(Dictionary state, ... FILE: VideoInterstitialAd/HelloWorld/Repositories/TodoItemRepository.cs class TodoItemRepository (line 9) | public class TodoItemRepository method Factory (line 11) | public Models.TodoItem Factory(string key = null, bool? complete = nul... method Clone (line 21) | public Models.TodoItem Clone(Models.TodoItem item) method Sample (line 32) | public IEnumerable Sample(int count = 5) FILE: VideoInterstitialAd/HelloWorld/Repositories/TodoListRepository.cs class TodoListRepository (line 9) | public class TodoListRepository method TodoListRepository (line 16) | public TodoListRepository() method GetAsync (line 22) | public async Task> GetAsync() method GetAsync (line 27) | public async Task GetAsync(string key) method SaveAsync (line 32) | public async Task SaveAsync(List list) method Factory (line 37) | public Models.TodoList Factory(string key = null, string title = null,... method Clone (line 47) | public Models.TodoList Clone(Models.TodoList list) method Sample (line 57) | public IEnumerable Sample(int count = 5) FILE: VideoInterstitialAd/HelloWorld/Services/AdService/AdHelper.cs class AdHelper (line 8) | public class AdHelper method AdHelper (line 16) | public AdHelper(string appId, string unitId) type Results (line 22) | public enum Results { Complete, Canceled, Error }; method Preload (line 24) | public void Preload() method Hide (line 29) | public void Hide() method Show (line 34) | public void Show(Action callback, bool allowRepeat = false) FILE: VideoInterstitialAd/HelloWorld/Services/AdService/AdService.cs class AdService (line 9) | class AdService method AdService (line 12) | public AdService() method Show (line 21) | public void Show(Action callback) FILE: VideoInterstitialAd/HelloWorld/Services/FileService/FileHelper.cs class FileHelper (line 10) | class FileHelper method FileExistsAsync (line 16) | public async Task FileExistsAsync(string key, StorageStrategies ... method FileExistsAsync (line 21) | public async Task FileExistsAsync(string key, Windows.Storage.St... method DeleteFileAsync (line 29) | public async Task DeleteFileAsync(string key, StorageStrategies ... method ReadFileAsync (line 42) | public async Task ReadFileAsync(string key, StorageStrategies lo... method WriteFileAsync (line 67) | public async Task WriteFileAsync(string key, T value, Storage... method CreateFileAsync (line 79) | private async Task CreateFileAsync(string... method GetIfFileExistsAsync (line 95) | private async Task GetIfFileExistsAsync(s... method GetIfFileExistsAsync (line 115) | private async Task GetIfFileExistsAsync(s... method Serialize (line 146) | private string Serialize(T item) method Deserialize (line 156) | private T Deserialize(string json) type StorageStrategies (line 161) | public enum StorageStrategies { Local, Roaming, Temporary } FILE: VideoInterstitialAd/HelloWorld/Services/FileService/FileService.cs class FileService (line 9) | class FileService method ReadAsync (line 13) | public async Task> ReadAsync(string key) method WriteAsync (line 19) | public async Task WriteAsync(string key, List items) FILE: VideoInterstitialAd/HelloWorld/Services/InAppPurchaseService/InAppPurchaseHelper.cs class InAppPurchaseHelper (line 14) | public class InAppPurchaseHelper method InAppPurchaseHelper (line 22) | public InAppPurchaseHelper(string featureKey, bool simulate = true) method SetupAsync (line 141) | public async Task SetupAsync() method Purchase (line 198) | public async Task Purchase() method SetupSimulation (line 240) | private async Task SetupSimulation() method RaiseLicenseChanged (line 309) | protected bool RaiseLicenseChanged(bool value) class LicenseChangedEventArgs (line 316) | public class LicenseChangedEventArgs : EventArgs FILE: VideoInterstitialAd/HelloWorld/Services/InAppPurchaseService/InAppPurchaseService.cs class InAppPurchaseService (line 6) | class InAppPurchaseService method InAppPurchaseService (line 10) | public InAppPurchaseService() method IsPurchased (line 15) | public bool IsPurchased() method PurchaseAsync (line 20) | public async Task PurchaseAsync() FILE: VideoInterstitialAd/HelloWorld/Services/NavigationService/INavigatable.cs type INavigatable (line 6) | public interface INavigatable method OnNavigatedTo (line 8) | void OnNavigatedTo(string parameter, NavigationMode mode, Dictionary state, bool suspending); FILE: VideoInterstitialAd/HelloWorld/Services/NavigationService/NavigationEventArgs.cs class NavigationEventArgs (line 10) | public class NavigationEventArgs : EventArgs FILE: VideoInterstitialAd/HelloWorld/Services/NavigationService/NavigationFacade.cs class NavigationFacade (line 13) | public class NavigationFacade method NavigationFacade (line 15) | public NavigationFacade(Frame frame) method Navigate (line 33) | public bool Navigate(Type page, string parameter) { return _frame.Navi... method SetNavigationState (line 35) | public void SetNavigationState(string state) { _frame.SetNavigationSta... method GetNavigationState (line 37) | public string GetNavigationState() { return _frame.GetNavigationState(... method GoBack (line 43) | public void GoBack() { _frame.GoBack(); } method Refresh (line 45) | public void Refresh() method GoForward (line 55) | public void GoForward() { _frame.GoForward(); } method GetValue (line 63) | public object GetValue(DependencyProperty dp) { return _frame.GetValue... method SetValue (line 65) | public void SetValue(DependencyProperty dp, object value) { _frame.Set... method ClearValue (line 67) | public void ClearValue(DependencyProperty dp) { _frame.ClearValue(dp); } method FacadeNavigatedEventHandler (line 95) | void FacadeNavigatedEventHandler(object sender, Windows.UI.Xaml.Naviga... method FacadeNavigatingCancelEventHandler (line 133) | private void FacadeNavigatingCancelEventHandler(object sender, Navigat... FILE: VideoInterstitialAd/HelloWorld/Services/NavigationService/NavigationService.cs class NavigationService (line 8) | public class NavigationService method NavigationService (line 16) | public NavigationService(Frame frame) method NavigateFrom (line 23) | void NavigateFrom(bool suspending) method NavigateTo (line 36) | void NavigateTo(NavigationMode mode, string parameter) method Navigate (line 57) | public bool Navigate(Type page, string parameter = null) method RestoreSavedNavigation (line 67) | public void RestoreSavedNavigation() { /* TODO */ } method GoBack (line 69) | public void GoBack() { if (_frame.CanGoBack) _frame.GoBack(); } method GoForward (line 73) | public void GoForward() { _frame.GoForward(); } method ClearHistory (line 77) | public void ClearHistory() { _frame.SetNavigationState(EmptyNavigation... method Suspending (line 79) | public void Suspending() { NavigateFrom(true); } method Show (line 81) | public void Show(SettingsFlyout flyout, string parameter = null) FILE: VideoInterstitialAd/HelloWorld/ViewModels/MainPageViewModel.cs class MainPageViewModel (line 12) | public class MainPageViewModel : Mvvm.ViewModelBase method MainPageViewModel (line 16) | public MainPageViewModel() method OnNavigatedTo (line 39) | public override void OnNavigatedTo(string parameter, NavigationMode mo... method OnNavigatedFrom (line 44) | public override void OnNavigatedFrom(Dictionary state,... method CanExecuteAddListCommand (line 62) | private bool CanExecuteAddListCommand() { return !Busy; } method ExecuteAddListCommand (line 63) | private void ExecuteAddListCommand() method CanExecuteRemoveListCommand (line 76) | private bool CanExecuteRemoveListCommand(ViewModels.TodoListViewModel ... method ExecuteRemoveListCommand (line 77) | private void ExecuteRemoveListCommand(ViewModels.TodoListViewModel list) method CanExecuteLoadCommand (line 90) | private bool CanExecuteLoadCommand() { return !Busy; } method ExecuteLoadCommand (line 91) | private async void ExecuteLoadCommand() method CanExecuteSaveCommand (line 109) | private bool CanExecuteSaveCommand() { return true; } method ExecuteSaveCommand (line 110) | private async void ExecuteSaveCommand() method CanExecuteRemoveAdsCommand (line 127) | private bool CanExecuteRemoveAdsCommand() { return !Busy && ShowAd; } method ExecuteRemoveAdsCommand (line 128) | private async void ExecuteRemoveAdsCommand() method CanExecuteShowVideoAdCommand (line 141) | private bool CanExecuteShowVideoAdCommand() { return !Busy; } method ExecuteShowVideoAdCommand (line 142) | private void ExecuteShowVideoAdCommand() FILE: VideoInterstitialAd/HelloWorld/ViewModels/TodoItemViewModel.cs class TodoItemViewModel (line 8) | public class TodoItemViewModel : Mvvm.ViewModelBase method TodoItemViewModel (line 10) | public TodoItemViewModel(Models.TodoItem todo) FILE: VideoInterstitialAd/HelloWorld/ViewModels/TodoListViewModel.cs class TodoListViewModel (line 6) | public class TodoListViewModel : Mvvm.ViewModelBase method TodoListViewModel (line 10) | public TodoListViewModel(Models.TodoList list) method CanExecuteAddCommand (line 35) | private bool CanExecuteAddCommand(string title) { return true; } method ExecuteAddCommand (line 36) | private void ExecuteAddCommand(string title) method CanExecuteRemoveCommand (line 51) | private bool CanExecuteRemoveCommand(Models.TodoItem param) { return S... method ExecuteRemoveCommand (line 52) | private void ExecuteRemoveCommand(Models.TodoItem param) FILE: VideoInterstitialAd/HelloWorld/Views/MainPage.xaml.cs class MainPage (line 8) | public sealed partial class MainPage : Page method MainPage (line 10) | public MainPage() method TodoItem_ItemClicked (line 20) | private async void TodoItem_ItemClicked(object sender, ItemClickEventA... method List_Tapped (line 26) | private async void List_Tapped(object sender, Windows.UI.Xaml.Input.Ta... method TextBox_KeyDown (line 36) | private void TextBox_KeyDown(object sender, Windows.UI.Xaml.Input.KeyR... FILE: XamlControls/XamlControls-Blank/App.xaml.cs class App (line 25) | sealed partial class App : Application method App (line 36) | public App() method OnLaunched (line 49) | protected override void OnLaunched(LaunchActivatedEventArgs e) method OnNavigationFailed (line 95) | void OnNavigationFailed(object sender, NavigationFailedEventArgs e) method OnSuspending (line 107) | private void OnSuspending(object sender, SuspendingEventArgs e) FILE: XamlControls/XamlControls-Blank/Models/MenuItem.cs class MenuItem (line 9) | class MenuItem FILE: XamlControls/XamlControls-Blank/Models/TodoItem.cs class TodoItem (line 5) | public class TodoItem : Mvvm.BindableBase FILE: XamlControls/XamlControls-Blank/Models/TodoList.cs class TodoList (line 7) | public class TodoList : Mvvm.BindableBase FILE: XamlControls/XamlControls-Blank/Mvvm/BindableBase.cs class BindableBase (line 6) | public abstract class BindableBase : INotifyPropertyChanged method RaisePropertyChanged (line 10) | public void RaisePropertyChanged([CallerMemberName]string propertyName... method Set (line 15) | public void Set(ref T storage, T value, [CallerMemberName()]string ... FILE: XamlControls/XamlControls-Blank/Mvvm/Command.cs class Command (line 13) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() class Command (line 62) | public class Command : System.Windows.Input.ICommand method Command (line 19) | public Command(Action execute) method Command (line 23) | public Command(Action execute, Func canexecute) method CanExecute (line 31) | [DebuggerStepThrough] method Execute (line 45) | public void Execute(object p) method RaiseCanExecuteChanged (line 55) | public void RaiseCanExecuteChanged() method Command (line 68) | public Command(Action execute) method Command (line 72) | public Command(Action execute, Func canexecute) method CanExecute (line 80) | [DebuggerStepThrough] method Execute (line 95) | public void Execute(object p) method RaiseCanExecuteChanged (line 106) | public void RaiseCanExecuteChanged() FILE: XamlControls/XamlControls-Blank/ViewModels/SampleViewModel.cs class SampleViewModel (line 10) | class SampleViewModel method SampleViewModel (line 12) | public SampleViewModel() FILE: XamlControls/XamlControls-Blank/Views/GeometryControls.xaml.cs class GeometryControls (line 23) | public sealed partial class GeometryControls : Page method GeometryControls (line 25) | public GeometryControls() FILE: XamlControls/XamlControls-Blank/Views/InputControls.xaml.cs class InputControls (line 23) | public sealed partial class InputControls : Page method InputControls (line 25) | public InputControls() FILE: XamlControls/XamlControls-Blank/Views/ItemsControls.xaml.cs class ItemsControls (line 23) | public sealed partial class ItemsControls : Page method ItemsControls (line 25) | public ItemsControls() FILE: XamlControls/XamlControls-Blank/Views/LayoutControls.xaml.cs class LayoutControls (line 23) | public sealed partial class LayoutControls : Page method LayoutControls (line 25) | public LayoutControls() FILE: XamlControls/XamlControls-Blank/Views/MainPage.xaml.cs class MainPage (line 18) | public sealed partial class MainPage : Page method MainPage (line 20) | public MainPage() method GridView_ItemClick (line 25) | private void GridView_ItemClick(object sender, ItemClickEventArgs e) FILE: XamlControls/XamlControls-Blank/Views/Transforms.xaml.cs class Transforms (line 23) | public sealed partial class Transforms : Page method Transforms (line 25) | public Transforms()