├── .gitattributes ├── .gitignore ├── ReactiveGitHubClient.sln ├── ReactiveGitHubClient ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReactiveGitHubClient.csproj ├── ViewModels │ ├── LoginViewModel.cs │ └── MainWindowViewModel.cs ├── Views │ ├── LoginView.xaml │ └── LoginView.xaml.cs └── packages.config └── packages ├── Rx-Core.2.1.30214.0 ├── Rx-Core.2.1.30214.0.nupkg ├── Rx-Core.2.1.30214.0.nuspec └── lib │ ├── Net40 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ ├── Net45 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ ├── NetCore45 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ ├── Portable-Net45+WinRT45+WP8 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ ├── SL4-WindowsPhone71 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ ├── SL4 │ └── _._ │ ├── SL5 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ └── WP8 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll ├── Rx-Interfaces.2.1.30214.0 ├── Rx-Interfaces.2.1.30214.0.nupkg ├── Rx-Interfaces.2.1.30214.0.nuspec └── lib │ ├── Net40 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ ├── Net45 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ ├── NetCore45 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ ├── Portable-Net45+WinRT45+WP8 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ ├── SL4-WindowsPhone71 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ ├── SL4 │ └── _._ │ ├── SL5 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ └── WP8 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll ├── Rx-Linq.2.1.30214.0 ├── Rx-Linq.2.1.30214.0.nupkg ├── Rx-Linq.2.1.30214.0.nuspec └── lib │ ├── Net40 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ ├── Net45 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ ├── NetCore45 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ ├── Portable-Net45+WinRT45+WP8 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ ├── SL4-WindowsPhone71 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ ├── SL4 │ └── _._ │ ├── SL5 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ └── WP8 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll ├── Rx-Main.2.1.30214.0 ├── Rx-Main.2.1.30214.0.nupkg └── Rx-Main.2.1.30214.0.nuspec ├── Rx-PlatformServices.2.1.30214.0 ├── Rx-PlatformServices.2.1.30214.0.nupkg ├── Rx-PlatformServices.2.1.30214.0.nuspec ├── content │ ├── Net40 │ │ └── _._ │ ├── Net45 │ │ └── _._ │ ├── NetCore45 │ │ └── _._ │ ├── Portable-Net45+WinRT45+WP8 │ │ └── Readme.txt │ ├── SL4-WindowsPhone71 │ │ └── _._ │ ├── SL4 │ │ └── _._ │ ├── SL5 │ │ └── _._ │ └── WP8 │ │ └── _._ └── lib │ ├── Net40 │ ├── System.Reactive.PlatformServices.XML │ └── System.Reactive.PlatformServices.dll │ ├── Net45 │ ├── System.Reactive.PlatformServices.XML │ └── System.Reactive.PlatformServices.dll │ ├── NetCore45 │ ├── System.Reactive.PlatformServices.XML │ └── System.Reactive.PlatformServices.dll │ ├── Portable-Net45+WinRT45+WP8 │ └── _._ │ ├── SL4-WindowsPhone71 │ ├── System.Reactive.PlatformServices.XML │ └── System.Reactive.PlatformServices.dll │ ├── SL4 │ └── _._ │ ├── SL5 │ ├── System.Reactive.PlatformServices.XML │ └── System.Reactive.PlatformServices.dll │ └── WP8 │ ├── System.Reactive.PlatformServices.XML │ └── System.Reactive.PlatformServices.dll ├── Rx-Xaml.2.1.30214.0 ├── Rx-Xaml.2.1.30214.0.nupkg ├── Rx-Xaml.2.1.30214.0.nuspec └── lib │ ├── Net40 │ ├── System.Reactive.Windows.Threading.XML │ └── System.Reactive.Windows.Threading.dll │ ├── Net45 │ ├── System.Reactive.Windows.Threading.XML │ └── System.Reactive.Windows.Threading.dll │ ├── NetCore45 │ ├── System.Reactive.Windows.Threading.XML │ └── System.Reactive.Windows.Threading.dll │ ├── SL4-WindowsPhone71 │ ├── System.Reactive.Windows.Threading.XML │ └── System.Reactive.Windows.Threading.dll │ ├── SL4 │ └── _._ │ ├── SL5 │ ├── System.Reactive.Windows.Threading.XML │ └── System.Reactive.Windows.Threading.dll │ └── WP8 │ ├── System.Reactive.Windows.Threading.XML │ └── System.Reactive.Windows.Threading.dll ├── WpfAutoGrid.1.0.0.0 ├── WpfAutoGrid.1.0.0.0.nupkg ├── WpfAutoGrid.1.0.0.0.nuspec └── lib │ └── net45 │ └── WpfAutoGrid.dll ├── reactiveui-core.5.3.0 ├── lib │ ├── Monoandroid │ │ ├── ReactiveUI.dll │ │ └── ReactiveUI.xml │ ├── Monomac │ │ ├── ReactiveUI.dll │ │ ├── ReactiveUI.mdb │ │ └── ReactiveUI.xml │ ├── Monotouch │ │ ├── ReactiveUI.dll │ │ └── ReactiveUI.xml │ └── Portable-Net45+WinRT45+WP8 │ │ ├── ReactiveUI.dll │ │ └── ReactiveUI.xml ├── reactiveui-core.5.3.0.nupkg ├── reactiveui-core.5.3.0.nuspec └── tools │ ├── ICSharpCode.NRefactory.CSharp.dll │ ├── ICSharpCode.NRefactory.dll │ ├── Mono.Cecil.dll │ ├── Nustache.Core.dll │ ├── RxUIScaffolding.psm1 │ ├── RxUIViewModelGenerator.exe │ ├── RxUIViewModelGenerator.exe.config │ └── init.ps1 ├── reactiveui-platforms.5.3.0 ├── lib │ ├── Monoandroid │ │ ├── ReactiveUI.Android.dll │ │ └── ReactiveUI.Android.xml │ ├── Monomac │ │ ├── ReactiveUI.Cocoa.dll │ │ ├── ReactiveUI.Cocoa.mdb │ │ └── ReactiveUI.Cocoa.xml │ ├── Monotouch │ │ ├── ReactiveUI.Cocoa.dll │ │ └── ReactiveUI.Cocoa.xml │ ├── WP8 │ │ ├── ReactiveUI.Blend.dll │ │ ├── ReactiveUI.Blend.dll.config │ │ ├── ReactiveUI.Blend.xml │ │ ├── ReactiveUI.Xaml.dll │ │ └── ReactiveUI.Xaml.xml │ ├── WinRT45 │ │ ├── ReactiveUI.Xaml.dll │ │ ├── ReactiveUI.Xaml.pri │ │ └── ReactiveUI.Xaml.xml │ └── net45 │ │ ├── ReactiveUI.Blend.dll │ │ ├── ReactiveUI.Blend.xml │ │ ├── ReactiveUI.Xaml.dll │ │ └── ReactiveUI.Xaml.xml ├── reactiveui-platforms.5.3.0.nupkg └── reactiveui-platforms.5.3.0.nuspec ├── reactiveui-xaml.5.3.0 ├── reactiveui-xaml.5.3.0.nupkg └── reactiveui-xaml.5.3.0.nuspec └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | 46 | [Dd]ebug/ 47 | [Rr]elease/ 48 | x64/ 49 | build/ 50 | [Bb]in/ 51 | [Oo]bj/ 52 | 53 | # MSTest test Results 54 | [Tt]est[Rr]esult*/ 55 | [Bb]uild[Ll]og.* 56 | 57 | *_i.c 58 | *_p.c 59 | *.ilk 60 | *.meta 61 | *.obj 62 | *.pch 63 | *.pdb 64 | *.pgc 65 | *.pgd 66 | *.rsp 67 | *.sbr 68 | *.tlb 69 | *.tli 70 | *.tlh 71 | *.tmp 72 | *.tmp_proj 73 | *.log 74 | *.vspscc 75 | *.vssscc 76 | .builds 77 | *.pidb 78 | *.log 79 | *.scc 80 | 81 | # Visual C++ cache files 82 | ipch/ 83 | *.aps 84 | *.ncb 85 | *.opensdf 86 | *.sdf 87 | *.cachefile 88 | 89 | # Visual Studio profiler 90 | *.psess 91 | *.vsp 92 | *.vspx 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | 101 | # TeamCity is a build add-in 102 | _TeamCity* 103 | 104 | # DotCover is a Code Coverage Tool 105 | *.dotCover 106 | 107 | # NCrunch 108 | *.ncrunch* 109 | .*crunch*.local.xml 110 | 111 | # Installshield output folder 112 | [Ee]xpress/ 113 | 114 | # DocProject is a documentation generator add-in 115 | DocProject/buildhelp/ 116 | DocProject/Help/*.HxT 117 | DocProject/Help/*.HxC 118 | DocProject/Help/*.hhc 119 | DocProject/Help/*.hhk 120 | DocProject/Help/*.hhp 121 | DocProject/Help/Html2 122 | DocProject/Help/html 123 | 124 | # Click-Once directory 125 | publish/ 126 | 127 | # Publish Web Output 128 | *.Publish.xml 129 | *.pubxml 130 | 131 | # NuGet Packages Directory 132 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 133 | #packages/ 134 | 135 | # Windows Azure Build Output 136 | csx 137 | *.build.csdef 138 | 139 | # Windows Store app package directory 140 | AppPackages/ 141 | 142 | # Others 143 | sql/ 144 | *.Cache 145 | ClientBin/ 146 | [Ss]tyle[Cc]op.* 147 | ~$* 148 | *~ 149 | *.dbmdl 150 | *.[Pp]ublish.xml 151 | *.pfx 152 | *.publishsettings 153 | 154 | # RIA/Silverlight projects 155 | Generated_Code/ 156 | 157 | # Backup & report files from converting an old project file to a newer 158 | # Visual Studio version. Backup files are not needed, because we have git ;-) 159 | _UpgradeReport_Files/ 160 | Backup*/ 161 | UpgradeLog*.XML 162 | UpgradeLog*.htm 163 | 164 | # SQL Server files 165 | App_Data/*.mdf 166 | App_Data/*.ldf 167 | 168 | ############# 169 | ## Windows detritus 170 | ############# 171 | 172 | # Windows image file caches 173 | Thumbs.db 174 | ehthumbs.db 175 | 176 | # Folder config file 177 | Desktop.ini 178 | 179 | # Recycle Bin used on file shares 180 | $RECYCLE.BIN/ 181 | 182 | # Mac crap 183 | .DS_Store 184 | 185 | 186 | ############# 187 | ## Python 188 | ############# 189 | 190 | *.py[co] 191 | 192 | # Packages 193 | *.egg 194 | *.egg-info 195 | dist/ 196 | build/ 197 | eggs/ 198 | parts/ 199 | var/ 200 | sdist/ 201 | develop-eggs/ 202 | .installed.cfg 203 | 204 | # Installer logs 205 | pip-log.txt 206 | 207 | # Unit test / coverage reports 208 | .coverage 209 | .tox 210 | 211 | #Translations 212 | *.mo 213 | 214 | #Mr Developer 215 | .mr.developer.cfg 216 | -------------------------------------------------------------------------------- /ReactiveGitHubClient.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.21005.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveGitHubClient", "ReactiveGitHubClient\ReactiveGitHubClient.csproj", "{1C482467-9B95-4C9A-BFD6-AC483975905F}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {1C482467-9B95-4C9A-BFD6-AC483975905F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {1C482467-9B95-4C9A-BFD6-AC483975905F}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {1C482467-9B95-4C9A-BFD6-AC483975905F}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {1C482467-9B95-4C9A-BFD6-AC483975905F}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/App.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/App.xaml.cs: -------------------------------------------------------------------------------- 1 | // ----------------------------------------------------------------------- 2 | // 3 | // Copyright 2013 MIT Licence. See licence.md for more information. 4 | // 5 | // ----------------------------------------------------------------------- 6 | 7 | namespace ReactiveGitHubClient 8 | { 9 | using System.Windows; 10 | using ReactiveGitHubClient.ViewModels; 11 | using ReactiveGitHubClient.Views; 12 | using ReactiveUI; 13 | 14 | /// 15 | /// The WPF application. 16 | /// 17 | public partial class App : Application 18 | { 19 | /// 20 | /// Initializes a new instance of the class. 21 | /// 22 | public App() 23 | { 24 | RxApp.MutableResolver.Register(() => new LoginView(), typeof(IViewFor)); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | // ----------------------------------------------------------------------- 2 | // 3 | // Copyright 2013 MIT Licence. See licence.md for more information. 4 | // 5 | // ----------------------------------------------------------------------- 6 | 7 | namespace ReactiveGitHubClient 8 | { 9 | using System.Windows; 10 | using ReactiveGitHubClient.ViewModels; 11 | 12 | /// 13 | /// Interaction logic for the MainWindow view. 14 | /// 15 | public partial class MainWindow : Window 16 | { 17 | /// 18 | /// Initializes a new instance of the class. 19 | /// 20 | public MainWindow() 21 | { 22 | this.InitializeComponent(); 23 | this.DataContext = new MainWindowViewModel(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // ----------------------------------------------------------------------- 2 | // 3 | // Copyright 2013 MIT Licence. See licence.md for more information. 4 | // 5 | // ----------------------------------------------------------------------- 6 | 7 | using System.Reflection; 8 | using System.Resources; 9 | using System.Runtime.CompilerServices; 10 | using System.Runtime.InteropServices; 11 | using System.Windows; 12 | 13 | // General Information about an assembly is controlled through the following 14 | // set of attributes. Change these attribute values to modify the information 15 | // associated with an assembly. 16 | [assembly: AssemblyTitle("ReactiveGitHubClient")] 17 | [assembly: AssemblyDescription("")] 18 | [assembly: AssemblyConfiguration("")] 19 | [assembly: AssemblyCompany("")] 20 | [assembly: AssemblyProduct("ReactiveGitHubClient")] 21 | [assembly: AssemblyCopyright("Copyright © 2013")] 22 | [assembly: AssemblyTrademark("")] 23 | [assembly: AssemblyCulture("")] 24 | 25 | // Setting ComVisible to false makes the types in this assembly not visible 26 | // to COM components. If you need to access a type in this assembly from 27 | // COM, set the ComVisible attribute to true on that type. 28 | [assembly: ComVisible(false)] 29 | 30 | [assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)] 31 | 32 | [assembly: AssemblyVersion("1.0.0.0")] 33 | [assembly: AssemblyFileVersion("1.0.0.0")] 34 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.34003 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ReactiveGitHubClient.Properties 12 | { 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ReactiveGitHubClient.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.34003 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ReactiveGitHubClient.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/ReactiveGitHubClient.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {1C482467-9B95-4C9A-BFD6-AC483975905F} 8 | WinExe 9 | Properties 10 | ReactiveGitHubClient 11 | ReactiveGitHubClient 12 | v4.5 13 | 512 14 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 15 | 4 16 | 17 | 18 | AnyCPU 19 | true 20 | full 21 | false 22 | bin\Debug\ 23 | DEBUG;TRACE 24 | prompt 25 | 4 26 | 27 | 28 | AnyCPU 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | 38 | ..\packages\reactiveui-core.5.3.0\lib\Portable-Net45+WinRT45+WP8\ReactiveUI.dll 39 | 40 | 41 | ..\packages\reactiveui-platforms.5.3.0\lib\net45\ReactiveUI.Blend.dll 42 | 43 | 44 | ..\packages\reactiveui-platforms.5.3.0\lib\net45\ReactiveUI.Xaml.dll 45 | 46 | 47 | 48 | 49 | 50 | ..\packages\Rx-Core.2.1.30214.0\lib\Net45\System.Reactive.Core.dll 51 | 52 | 53 | ..\packages\Rx-Interfaces.2.1.30214.0\lib\Net45\System.Reactive.Interfaces.dll 54 | 55 | 56 | ..\packages\Rx-Linq.2.1.30214.0\lib\Net45\System.Reactive.Linq.dll 57 | 58 | 59 | ..\packages\Rx-PlatformServices.2.1.30214.0\lib\Net45\System.Reactive.PlatformServices.dll 60 | 61 | 62 | ..\packages\Rx-XAML.2.1.30214.0\lib\Net45\System.Reactive.Windows.Threading.dll 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 4.0 71 | 72 | 73 | 74 | 75 | 76 | ..\packages\WpfAutoGrid.1.0.0.0\lib\net45\WpfAutoGrid.dll 77 | 78 | 79 | 80 | 81 | MSBuild:Compile 82 | Designer 83 | 84 | 85 | 86 | 87 | LoginView.xaml 88 | 89 | 90 | MSBuild:Compile 91 | Designer 92 | 93 | 94 | App.xaml 95 | Code 96 | 97 | 98 | MainWindow.xaml 99 | Code 100 | 101 | 102 | Designer 103 | MSBuild:Compile 104 | 105 | 106 | 107 | 108 | Code 109 | 110 | 111 | True 112 | True 113 | Resources.resx 114 | 115 | 116 | True 117 | Settings.settings 118 | True 119 | 120 | 121 | ResXFileCodeGenerator 122 | Resources.Designer.cs 123 | 124 | 125 | 126 | SettingsSingleFileGenerator 127 | Settings.Designer.cs 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 142 | 143 | ..\packages\StyleCop.MSBuild.4.7.46.1\tools\StyleCop.targets 144 | 145 | 146 | 147 | Failed to import StyleCop.MSBuild targets from '$(StyleCopMSBuildTargetsFile)'. The StyleCop.MSBuild package was either missing or incomplete when the project was loaded. Ensure that the package is present and then restart the build. If you are using an IDE (e.g. Visual Studio), reload the project before restarting the build. 148 | Failed to import StyleCop.MSBuild targets from '$(StyleCopMSBuildTargetsFile)'. The StyleCop.MSBuild package was either missing or incomplete when the project was loaded (but is now present). To fix this, restart the build. If you are using an IDE (e.g. Visual Studio), reload the project before restarting the build. 149 | Failed to import StyleCop.MSBuild targets from '$(StyleCopMSBuildTargetsFile)'. The StyleCop.MSBuild package was either missing or incomplete when the project was loaded. To fix this, restore the package and then restart the build. If you are using an IDE (e.g. Visual Studio), you may need to reload the project before restarting the build. Note that regular NuGet package restore (during build) does not work with this package because the package needs to be present before the project is loaded. If this is an automated build (e.g. CI server), you may want to ensure that the build process restores the StyleCop.MSBuild package before the project is built. 150 | Failed to import StyleCop.MSBuild targets from '$(StyleCopMSBuildTargetsFile)'. The StyleCop.MSBuild package was either missing or incomplete when the project was loaded (but is now present). To fix this, restart the build. If you are using an IDE (e.g. Visual Studio), reload the project before restarting the build. Note that when using regular NuGet package restore (during build) the package will not be available for the initial build because the package needs to be present before the project is loaded. If package restore executes successfully in the initial build then the package will be available for subsequent builds. If this is an automated build (e.g. CI server), you may want to ensure that the build process restores the StyleCop.MSBuild package before the initial build. 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | StyleCopMSBuildTargetsNotFound;$(PrepareForBuildDependsOn) 164 | 165 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- 1 | // ----------------------------------------------------------------------- 2 | // 3 | // Copyright 2013 MIT Licence. See licence.md for more information. 4 | // 5 | // ----------------------------------------------------------------------- 6 | 7 | namespace ReactiveGitHubClient.ViewModels 8 | { 9 | using ReactiveUI; 10 | 11 | /// 12 | /// The view model for the login page. 13 | /// 14 | public class LoginViewModel : ReactiveObject 15 | { 16 | /// 17 | /// The username. 18 | /// 19 | private string userName; 20 | 21 | /// 22 | /// The password. 23 | /// 24 | private string password; 25 | 26 | /// 27 | /// Initializes a new instance of the class. 28 | /// 29 | public LoginViewModel() 30 | { 31 | // The login command is only enabled when both a user name and password have been 32 | // entered. 33 | this.LoginCommand = new ReactiveCommand( 34 | this.WhenAny( 35 | x => x.UserName, 36 | x => x.Password, 37 | (userName, password) => 38 | !string.IsNullOrWhiteSpace(userName.Value) && 39 | !string.IsNullOrWhiteSpace(password.Value))); 40 | } 41 | 42 | /// 43 | /// Gets or sets the user name. 44 | /// 45 | public string UserName 46 | { 47 | get { return this.userName; } 48 | set { this.RaiseAndSetIfChanged(ref this.userName, value); } 49 | } 50 | 51 | /// 52 | /// Gets or sets the password. 53 | /// 54 | public string Password 55 | { 56 | get { return this.password; } 57 | set { this.RaiseAndSetIfChanged(ref this.password, value); } 58 | } 59 | 60 | /// 61 | /// Gets the command executed when the user clicks the "OK" button. 62 | /// 63 | public ReactiveCommand LoginCommand 64 | { 65 | get; 66 | private set; 67 | } 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- 1 | // ----------------------------------------------------------------------- 2 | // 3 | // Copyright 2013 MIT Licence. See licence.md for more information. 4 | // 5 | // ----------------------------------------------------------------------- 6 | 7 | namespace ReactiveGitHubClient.ViewModels 8 | { 9 | using ReactiveUI; 10 | 11 | /// 12 | /// View model for the application main window. 13 | /// 14 | public class MainWindowViewModel : ReactiveObject 15 | { 16 | /// 17 | /// The content of the main window. 18 | /// 19 | private ReactiveObject content; 20 | 21 | /// 22 | /// Initializes a new instance of the class. 23 | /// 24 | public MainWindowViewModel() 25 | { 26 | // Initally show the login view. 27 | this.content = new LoginViewModel(); 28 | } 29 | 30 | /// 31 | /// Gets the content of the main window. 32 | /// 33 | public ReactiveObject Content 34 | { 35 | get { return this.content; } 36 | private set { this.RaiseAndSetIfChanged(ref this.content, value); } 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/Views/LoginView.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ----------------------------------------------------------------------- 2 | // 3 | // Copyright 2013 MIT Licence. See licence.md for more information. 4 | // 5 | // ----------------------------------------------------------------------- 6 | 7 | namespace ReactiveGitHubClient.Views 8 | { 9 | using System.Windows; 10 | using System.Windows.Controls; 11 | using ReactiveGitHubClient.ViewModels; 12 | using ReactiveUI; 13 | 14 | /// 15 | /// Interaction logic for the LoginView. 16 | /// 17 | public partial class LoginView : UserControl, IViewFor 18 | { 19 | /// 20 | /// The dependency property declaration for the ViewModel. 21 | /// 22 | public static readonly DependencyProperty ViewModelProperty = 23 | DependencyProperty.Register( 24 | "ViewModel", 25 | typeof(LoginViewModel), 26 | typeof(LoginView)); 27 | 28 | /// 29 | /// Initializes a new instance of the class. 30 | /// 31 | public LoginView() 32 | { 33 | this.InitializeComponent(); 34 | 35 | // We need to bind the ViewModel property to the DataContext in order to be able to 36 | // use WPF Bindings. Let's use WPF bindings for the UserName property. 37 | this.WhenAnyValue(x => x.ViewModel).BindTo(this, x => x.DataContext); 38 | 39 | // And lets use ReactiveUI bindings for the Password property and the Login command. 40 | // Note that we don't need to explicitly pass the control we're binding to here for 41 | // Password, as the control is named the same as the property on the view model and 42 | // ReactiveUI is intelligent enough to realise we want to bind the Text property. 43 | this.Bind(this.ViewModel, x => x.Password); 44 | 45 | // For the LoginCommand on the other hand, we must use a one way binding and explicitly 46 | // specify the control and the property being bound to. 47 | this.OneWayBind(this.ViewModel, x => x.LoginCommand, x => x.okButton.Command); 48 | } 49 | 50 | /// 51 | /// Gets or sets the view's ViewModel. 52 | /// 53 | public LoginViewModel ViewModel 54 | { 55 | get { return (LoginViewModel)this.GetValue(ViewModelProperty); } 56 | set { this.SetValue(ViewModelProperty, value); } 57 | } 58 | 59 | /// 60 | /// Gets or sets the view's ViewModel. 61 | /// 62 | object IViewFor.ViewModel 63 | { 64 | get { return this.ViewModel; } 65 | set { this.ViewModel = (LoginViewModel)value; } 66 | } 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /ReactiveGitHubClient/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/Rx-Core.2.1.30214.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/Rx-Core.2.1.30214.0.nupkg -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/Rx-Core.2.1.30214.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Rx-Core 5 | 2.1.30214.0 6 | Reactive Extensions - Core Library 7 | Microsoft Corporation 8 | Microsoft Corporation 9 | http://go.microsoft.com/fwlink/?LinkID=261272 10 | http://go.microsoft.com/fwlink/?LinkID=261273 11 | http://go.microsoft.com/fwlink/?LinkId=261274 12 | true 13 | Reactive Extensions Core Library containing base classes and scheduler infrastructure. 14 | Microsoft Corporation © 2012 15 | en-us 16 | Rx Reactive Extensions Observable LINQ Events 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/lib/Net40/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/lib/Net40/System.Reactive.Core.dll -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/lib/Net45/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/lib/Net45/System.Reactive.Core.dll -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/lib/NetCore45/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/lib/NetCore45/System.Reactive.Core.dll -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/lib/Portable-Net45+WinRT45+WP8/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/lib/Portable-Net45+WinRT45+WP8/System.Reactive.Core.dll -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Core.dll -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/lib/SL4/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/lib/SL4/_._ -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/lib/SL5/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/lib/SL5/System.Reactive.Core.dll -------------------------------------------------------------------------------- /packages/Rx-Core.2.1.30214.0/lib/WP8/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Core.2.1.30214.0/lib/WP8/System.Reactive.Core.dll -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/Rx-Interfaces.2.1.30214.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/Rx-Interfaces.2.1.30214.0.nupkg -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/Rx-Interfaces.2.1.30214.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Rx-Interfaces 5 | 2.1.30214.0 6 | Reactive Extensions - Interfaces Library 7 | Microsoft Corporation 8 | Microsoft Corporation 9 | http://go.microsoft.com/fwlink/?LinkID=261272 10 | http://go.microsoft.com/fwlink/?LinkID=261273 11 | http://go.microsoft.com/fwlink/?LinkId=261274 12 | true 13 | Reactive Extensions Interfaces Library containing essential interfaces. 14 | Microsoft Corporation © 2012 15 | en-us 16 | Rx Reactive Extensions Observable LINQ Events 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/lib/Net40/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/lib/Net40/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/lib/Net45/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/lib/Net45/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/lib/NetCore45/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/lib/NetCore45/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/lib/Portable-Net45+WinRT45+WP8/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/lib/Portable-Net45+WinRT45+WP8/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/lib/SL4/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/lib/SL4/_._ -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/lib/SL5/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/lib/SL5/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /packages/Rx-Interfaces.2.1.30214.0/lib/WP8/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Interfaces.2.1.30214.0/lib/WP8/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/Rx-Linq.2.1.30214.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/Rx-Linq.2.1.30214.0.nupkg -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/Rx-Linq.2.1.30214.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Rx-Linq 5 | 2.1.30214.0 6 | Reactive Extensions - Query Library 7 | Microsoft Corporation 8 | Microsoft Corporation 9 | http://go.microsoft.com/fwlink/?LinkID=261272 10 | http://go.microsoft.com/fwlink/?LinkID=261273 11 | http://go.microsoft.com/fwlink/?LinkId=261274 12 | true 13 | Reactive Extensions Query Library used to express complex event processing queries over observable sequences. 14 | Microsoft Corporation © 2012 15 | en-us 16 | Rx Reactive Extensions Observable LINQ Events 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/lib/Net40/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/lib/Net40/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/lib/Net45/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/lib/Net45/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/lib/NetCore45/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/lib/NetCore45/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/lib/Portable-Net45+WinRT45+WP8/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/lib/Portable-Net45+WinRT45+WP8/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/lib/SL4/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/lib/SL4/_._ -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/lib/SL5/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/lib/SL5/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /packages/Rx-Linq.2.1.30214.0/lib/WP8/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Linq.2.1.30214.0/lib/WP8/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /packages/Rx-Main.2.1.30214.0/Rx-Main.2.1.30214.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Main.2.1.30214.0/Rx-Main.2.1.30214.0.nupkg -------------------------------------------------------------------------------- /packages/Rx-Main.2.1.30214.0/Rx-Main.2.1.30214.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Rx-Main 5 | 2.1.30214.0 6 | Reactive Extensions - Main Library 7 | Microsoft Corporation 8 | Microsoft Corporation 9 | http://go.microsoft.com/fwlink/?LinkID=261272 10 | http://go.microsoft.com/fwlink/?LinkID=261273 11 | http://go.microsoft.com/fwlink/?LinkId=261274 12 | true 13 | Reactive Extensions Main Library combining the interfaces, core, LINQ, and platform services libraries. 14 | Microsoft Corporation © 2012 15 | en-us 16 | Rx Reactive Extensions Observable LINQ Events 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/Rx-PlatformServices.2.1.30214.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/Rx-PlatformServices.2.1.30214.0.nupkg -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/Rx-PlatformServices.2.1.30214.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Rx-PlatformServices 5 | 2.1.30214.0 6 | Reactive Extensions - Platform Services Library 7 | Microsoft Corporation 8 | Microsoft Corporation 9 | http://go.microsoft.com/fwlink/?LinkID=261272 10 | http://go.microsoft.com/fwlink/?LinkID=261273 11 | http://go.microsoft.com/fwlink/?LinkId=261274 12 | true 13 | Reactive Extensions Platform Services Library used to access platform-specific functionality and enlightenment services. 14 | Microsoft Corporation © 2012 15 | en-us 16 | Rx Reactive Extensions Observable LINQ Events 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/content/Net40/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/content/Net40/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/content/Net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/content/Net45/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/content/NetCore45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/content/NetCore45/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/content/Portable-Net45+WinRT45+WP8/Readme.txt: -------------------------------------------------------------------------------- 1 | Portable libraries built using Rx do not include the System.Reactive.PlatformServices assembly 2 | containing "platform enlightenments" that depend on platform-specific functionality. (Doing so 3 | would prevent the library to be portable due to the dependencies on a specific platform.) 4 | 5 | When including the resulting portable library in another project, please include the platform's 6 | System.Reactive.PlatformServices assembly in order to get the best performance. To include this 7 | assembly, use any of the following options: 8 | 9 | 1. Select the System.Reactive.PlatformServices assembly from the Visual Studio "Add Reference" 10 | dialog. This option works for Windows Store apps, .NET 4.5, and Windows Phone 8 projects. 11 | 12 | 2. For Windows Store apps and Windows Phone 8 projects, use the Reactive Extensions Extension SDK 13 | which can be found in the "Add Reference" dialog. 14 | 15 | 3. Use NuGet to include the Rx-Main package (or any package that depends on Rx-Main, such as 16 | Rx-Xaml) which will automatically include the Rx-PlatformServices enlightenment package. 17 | -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/content/SL4-WindowsPhone71/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/content/SL4-WindowsPhone71/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/content/SL4/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/content/SL4/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/content/SL5/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/content/SL5/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/content/WP8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/content/WP8/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/Net40/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/lib/Net40/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/Net45/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/lib/Net45/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/NetCore45/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/lib/NetCore45/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/Portable-Net45+WinRT45+WP8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/lib/Portable-Net45+WinRT45+WP8/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.PlatformServices.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Reactive.PlatformServices 5 | 6 | 7 | 8 | 9 | Represents an object that schedules units of work on a designated thread. 10 | 11 | 12 | 13 | 14 | Counter for diagnostic purposes, to name the threads. 15 | 16 | 17 | 18 | 19 | Thread factory function. 20 | 21 | 22 | 23 | 24 | Stopwatch for timing free of absolute time dependencies. 25 | 26 | 27 | 28 | 29 | Thread used by the event loop to run work items on. No work should be run on any other thread. 30 | If ExitIfEmpty is set, the thread can quit and a new thread will be created when new work is scheduled. 31 | 32 | 33 | 34 | 35 | Gate to protect data structures, including the work queue and the ready list. 36 | 37 | 38 | 39 | 40 | Semaphore to count requests to re-evaluate the queue, from either Schedule requests or when a timer 41 | expires and moves on to the next item in the queue. 42 | 43 | 44 | 45 | 46 | Queue holding work items. Protected by the gate. 47 | 48 | 49 | 50 | 51 | Queue holding items that are ready to be run as soon as possible. Protected by the gate. 52 | 53 | 54 | 55 | 56 | Work item that will be scheduled next. Used upon reevaluation of the queue to check whether the next 57 | item is still the same. If not, a new timer needs to be started (see below). 58 | 59 | 60 | 61 | 62 | Disposable that always holds the timer to dispatch the first element in the queue. 63 | 64 | 65 | 66 | 67 | Flag indicating whether the event loop should quit. When set, the event should be signaled as well to 68 | wake up the event loop thread, which will subsequently abandon all work. 69 | 70 | 71 | 72 | 73 | Creates an object that schedules units of work on a designated thread. 74 | 75 | 76 | 77 | 78 | Creates an object that schedules units of work on a designated thread, using the specified factory to control thread creation options. 79 | 80 | Factory function for thread creation. 81 | is null. 82 | 83 | 84 | 85 | Schedules an action to be executed after dueTime. 86 | 87 | The type of the state passed to the scheduled action. 88 | State passed to the action to be executed. 89 | Action to be executed. 90 | Relative time after which to execute the action. 91 | The disposable object used to cancel the scheduled action (best effort). 92 | is null. 93 | The scheduler has been disposed and doesn't accept new work. 94 | 95 | 96 | 97 | Schedules a periodic piece of work on the designated thread. 98 | 99 | The type of the state passed to the scheduled action. 100 | Initial state passed to the action upon the first iteration. 101 | Period for running the work periodically. 102 | Action to be executed, potentially updating the state. 103 | The disposable object used to cancel the scheduled recurring action (best effort). 104 | is null. 105 | is less than TimeSpan.Zero. 106 | The scheduler has been disposed and doesn't accept new work. 107 | 108 | 109 | 110 | Starts a new stopwatch object. 111 | 112 | New stopwatch object; started at the time of the request. 113 | 114 | 115 | 116 | Ends the thread associated with this scheduler. All remaining work in the scheduler queue is abandoned. 117 | 118 | 119 | 120 | 121 | Ensures there is an event loop thread running. Should be called under the gate. 122 | 123 | 124 | 125 | 126 | Event loop scheduled on the designated event loop thread. The loop is suspended/resumed using the event 127 | which gets set by calls to Schedule, the next item timer, or calls to Dispose. 128 | 129 | 130 | 131 | 132 | Indicates whether the event loop thread is allowed to quit when no work is left. If new work 133 | is scheduled afterwards, a new event loop thread is created. This property is used by the 134 | NewThreadScheduler which uses an event loop for its recursive invocations. 135 | 136 | 137 | 138 | 139 | Represents an object that schedules each unit of work on a separate thread. 140 | 141 | 142 | 143 | 144 | Creates an object that schedules each unit of work on a separate thread. 145 | 146 | 147 | 148 | 149 | Creates an object that schedules each unit of work on a separate thread. 150 | 151 | Factory function for thread creation. 152 | is null. 153 | 154 | 155 | 156 | Schedules an action to be executed after dueTime. 157 | 158 | The type of the state passed to the scheduled action. 159 | State passed to the action to be executed. 160 | Action to be executed. 161 | Relative time after which to execute the action. 162 | The disposable object used to cancel the scheduled action (best effort). 163 | is null. 164 | 165 | 166 | 167 | Schedules a long-running task by creating a new thread. Cancellation happens through polling. 168 | 169 | The type of the state passed to the scheduled action. 170 | State passed to the action to be executed. 171 | Action to be executed. 172 | The disposable object used to cancel the scheduled action (best effort). 173 | is null. 174 | 175 | 176 | 177 | Schedules a periodic piece of work by creating a new thread that goes to sleep when work has been dispatched and wakes up again at the next periodic due time. 178 | 179 | The type of the state passed to the scheduled action. 180 | Initial state passed to the action upon the first iteration. 181 | Period for running the work periodically. 182 | Action to be executed, potentially updating the state. 183 | The disposable object used to cancel the scheduled recurring action (best effort). 184 | is null. 185 | is less than TimeSpan.Zero. 186 | 187 | 188 | 189 | Starts a new stopwatch object. 190 | 191 | New stopwatch object; started at the time of the request. 192 | 193 | 194 | 195 | Gets an instance of this scheduler that uses the default Thread constructor. 196 | 197 | 198 | 199 | 200 | Provides access to the platform enlightenments used by other Rx libraries to improve system performance and 201 | runtime efficiency. While Rx can run without platform enlightenments loaded, it's recommended to deploy the 202 | System.Reactive.PlatformServices assembly with your application and call during application startup to ensure enlightenments are properly loaded. 203 | 204 | 205 | 206 | 207 | Ensures that the calling assembly has a reference to the System.Reactive.PlatformServices assembly with 208 | platform enlightenments. If no reference is made from the user code, it's possible for the build process 209 | to drop the deployment of System.Reactive.PlatformServices, preventing its runtime discovery. 210 | 211 | 212 | true if the loaded enlightenment provider matches the provided defined in the current assembly; false 213 | otherwise. When a custom enlightenment provider is installed by the host, false will be returned. 214 | 215 | 216 | 217 | 218 | Represents an object that schedules units of work on the CLR thread pool. 219 | 220 | Singleton instance of this type exposed through this static property. 221 | 222 | 223 | 224 | Schedules an action to be executed. 225 | 226 | The type of the state passed to the scheduled action. 227 | State passed to the action to be executed. 228 | Action to be executed. 229 | The disposable object used to cancel the scheduled action (best effort). 230 | is null. 231 | 232 | 233 | 234 | Schedules an action to be executed after dueTime, using a System.Threading.Timer object. 235 | 236 | The type of the state passed to the scheduled action. 237 | State passed to the action to be executed. 238 | Action to be executed. 239 | Relative time after which to execute the action. 240 | The disposable object used to cancel the scheduled action (best effort). 241 | is null. 242 | 243 | 244 | 245 | Schedules a long-running task by creating a new thread. Cancellation happens through polling. 246 | 247 | The type of the state passed to the scheduled action. 248 | State passed to the action to be executed. 249 | Action to be executed. 250 | The disposable object used to cancel the scheduled action (best effort). 251 | is null. 252 | 253 | 254 | 255 | Starts a new stopwatch object. 256 | 257 | New stopwatch object; started at the time of the request. 258 | 259 | 260 | 261 | Schedules a periodic piece of work, using a System.Threading.Timer object. 262 | 263 | The type of the state passed to the scheduled action. 264 | Initial state passed to the action upon the first iteration. 265 | Period for running the work periodically. 266 | Action to be executed, potentially updating the state. 267 | The disposable object used to cancel the scheduled recurring action (best effort). 268 | is null. 269 | is less than or equal to zero. 270 | 271 | 272 | 273 | Gets the singleton instance of the CLR thread pool scheduler. 274 | 275 | 276 | 277 | 278 | (Infrastructure) Provider for platform-specific framework enlightenments. 279 | 280 | 281 | 282 | 283 | (Infastructure) Tries to gets the specified service. 284 | 285 | Service type. 286 | Optional set of arguments. 287 | Service instance or null if not found. 288 | 289 | 290 | 291 | A strongly-typed resource class, for looking up localized strings, etc. 292 | 293 | 294 | 295 | 296 | Returns the cached ResourceManager instance used by this class. 297 | 298 | 299 | 300 | 301 | Overrides the current thread's CurrentUICulture property for all 302 | resource lookups using this strongly typed resource class. 303 | 304 | 305 | 306 | 307 | Looks up a localized string similar to The WinRT thread pool doesn't support creating periodic timers with a period below 1 millisecond.. 308 | 309 | 310 | 311 | 312 | -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/SL4/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/lib/SL4/_._ -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/SL5/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/lib/SL5/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Rx-PlatformServices.2.1.30214.0/lib/WP8/System.Reactive.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-PlatformServices.2.1.30214.0/lib/WP8/System.Reactive.PlatformServices.dll -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/Rx-Xaml.2.1.30214.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Xaml.2.1.30214.0/Rx-Xaml.2.1.30214.0.nupkg -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/Rx-Xaml.2.1.30214.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Rx-Xaml 5 | 2.1.30214.0 6 | Reactive Extensions - XAML Support Library 7 | Microsoft Corporation 8 | Microsoft Corporation 9 | http://go.microsoft.com/fwlink/?LinkID=261272 10 | http://go.microsoft.com/fwlink/?LinkID=261273 11 | http://go.microsoft.com/fwlink/?LinkId=261274 12 | true 13 | XAML support library for Rx. Contains scheduler functionality for the UI dispatcher. 14 | Microsoft Corporation © 2012 15 | en-us 16 | Rx Reactive Extensions Observable LINQ Events 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/Net40/System.Reactive.Windows.Threading.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Reactive.Windows.Threading 5 | 6 | 7 | 8 | 9 | Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers. 10 | 11 | 12 | 13 | 14 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher. 15 | 16 | The type of the elements in the source sequence. 17 | Source sequence. 18 | Dispatcher whose associated message loop is used to to notify observers on. 19 | The source sequence whose observations happen on the specified dispatcher. 20 | or is null. 21 | 22 | 23 | 24 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher scheduler. 25 | 26 | The type of the elements in the source sequence. 27 | Source sequence. 28 | Dispatcher scheduler to notify observers on. 29 | The source sequence whose observations happen on the specified dispatcher scheduler. 30 | or is null. 31 | 32 | 33 | 34 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object. 35 | 36 | The type of the elements in the source sequence. 37 | Source sequence. 38 | Object to get the dispatcher from. 39 | The source sequence whose observations happen on the specified object's dispatcher. 40 | or is null. 41 | 42 | 43 | 44 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current thread. 45 | 46 | The type of the elements in the source sequence. 47 | Source sequence. 48 | The source sequence whose observations happen on the current thread's dispatcher. 49 | is null. 50 | 51 | 52 | 53 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher. 54 | 55 | The type of the elements in the source sequence. 56 | Source sequence. 57 | Dispatcher whose associated message loop is used to to perform subscription and unsubscription actions on. 58 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher. 59 | or is null. 60 | 61 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher. 62 | In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use . 63 | 64 | 65 | 66 | 67 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher scheduler. 68 | 69 | The type of the elements in the source sequence. 70 | Source sequence. 71 | Dispatcher scheduler to perform subscription and unsubscription actions on. 72 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher scheduler. 73 | or is null. 74 | 75 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified scheduler. 76 | In order to invoke observer callbacks on the specified scheduler, e.g. to render results in a control, use . 77 | 78 | 79 | 80 | 81 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object. 82 | 83 | The type of the elements in the source sequence. 84 | Source sequence. 85 | Object to get the dispatcher from. 86 | The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher. 87 | or is null. 88 | 89 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object. 90 | In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use . 91 | 92 | 93 | 94 | 95 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current thread. 96 | 97 | The type of the elements in the source sequence. 98 | Source sequence. 99 | The source sequence whose subscriptions and unsubscriptions happen on the current thread's dispatcher. 100 | is null. 101 | 102 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current thread. 103 | In order to invoke observer callbacks on the dispatcher associated with the current thread, e.g. to render results in a control, use . 104 | 105 | 106 | 107 | 108 | Represents an object that schedules units of work on a . 109 | 110 | 111 | This scheduler type is typically used indirectly through the and methods that use the Dispatcher on the calling thread. 112 | 113 | 114 | 115 | 116 | Constructs a DispatcherScheduler that schedules units of work on the given . 117 | 118 | Dispatcher to schedule work on. 119 | is null. 120 | 121 | 122 | 123 | Schedules an action to be executed on the dispatcher. 124 | 125 | The type of the state passed to the scheduled action. 126 | State passed to the action to be executed. 127 | Action to be executed. 128 | The disposable object used to cancel the scheduled action (best effort). 129 | is null. 130 | 131 | 132 | 133 | Schedules an action to be executed after dueTime on the dispatcher, using a object. 134 | 135 | The type of the state passed to the scheduled action. 136 | State passed to the action to be executed. 137 | Action to be executed. 138 | Relative time after which to execute the action. 139 | The disposable object used to cancel the scheduled action (best effort). 140 | is null. 141 | 142 | 143 | 144 | Schedules a periodic piece of work on the dispatcher, using a object. 145 | 146 | The type of the state passed to the scheduled action. 147 | Initial state passed to the action upon the first iteration. 148 | Period for running the work periodically. 149 | Action to be executed, potentially updating the state. 150 | The disposable object used to cancel the scheduled recurring action (best effort). 151 | is null. 152 | is less than TimeSpan.Zero. 153 | 154 | 155 | 156 | Gets the scheduler that schedules work on the current . 157 | 158 | 159 | 160 | 161 | Gets the scheduler that schedules work on the for the current thread. 162 | 163 | 164 | 165 | 166 | Gets the associated with the DispatcherScheduler. 167 | 168 | 169 | 170 | 171 | A strongly-typed resource class, for looking up localized strings, etc. 172 | 173 | 174 | 175 | 176 | Returns the cached ResourceManager instance used by this class. 177 | 178 | 179 | 180 | 181 | Overrides the current thread's CurrentUICulture property for all 182 | resource lookups using this strongly typed resource class. 183 | 184 | 185 | 186 | 187 | Looks up a localized string similar to The current thread has no Dispatcher associated with it.. 188 | 189 | 190 | 191 | 192 | Looks up a localized string similar to No current Window object found to obtain a CoreDispatcher from.. 193 | 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/Net40/System.Reactive.Windows.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Xaml.2.1.30214.0/lib/Net40/System.Reactive.Windows.Threading.dll -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/Net45/System.Reactive.Windows.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Xaml.2.1.30214.0/lib/Net45/System.Reactive.Windows.Threading.dll -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/NetCore45/System.Reactive.Windows.Threading.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Reactive.Windows.Threading 5 | 6 | 7 | 8 | 9 | Represents an object that schedules units of work on a Windows.UI.Core.CoreDispatcher. 10 | 11 | 12 | This scheduler type is typically used indirectly through the and methods that use the current Dispatcher. 13 | 14 | 15 | 16 | 17 | Constructs a CoreDispatcherScheduler that schedules units of work on the given Windows.UI.Core.CoreDispatcher. 18 | 19 | Dispatcher to schedule work on. 20 | is null. 21 | 22 | 23 | 24 | Constructs a CoreDispatcherScheduler that schedules units of work on the given Windows.UI.Core.CoreDispatcher with the given priority. 25 | 26 | Dispatcher to schedule work on. 27 | Priority for scheduled units of work. 28 | is null. 29 | 30 | 31 | 32 | Schedules an action to be executed on the dispatcher. 33 | 34 | The type of the state passed to the scheduled action. 35 | State passed to the action to be executed. 36 | Action to be executed. 37 | The disposable object used to cancel the scheduled action (best effort). 38 | is null. 39 | 40 | 41 | 42 | Schedules an action to be executed after dueTime on the dispatcher, using a Windows.UI.Xaml.DispatcherTimer object. 43 | 44 | The type of the state passed to the scheduled action. 45 | State passed to the action to be executed. 46 | Action to be executed. 47 | Relative time after which to execute the action. 48 | The disposable object used to cancel the scheduled action (best effort). 49 | is null. 50 | 51 | 52 | 53 | Schedules a periodic piece of work on the dispatcher, using a Windows.UI.Xaml.DispatcherTimer object. 54 | 55 | The type of the state passed to the scheduled action. 56 | Initial state passed to the action upon the first iteration. 57 | Period for running the work periodically. 58 | Action to be executed, potentially updating the state. 59 | The disposable object used to cancel the scheduled recurring action (best effort). 60 | is null. 61 | is less than TimeSpan.Zero. 62 | 63 | 64 | 65 | Gets the scheduler that schedules work on the Windows.UI.Core.CoreDispatcher associated with the current Window. 66 | 67 | 68 | 69 | 70 | Gets the Windows.UI.Core.CoreDispatcher associated with the CoreDispatcherScheduler. 71 | 72 | 73 | 74 | 75 | Gets the priority at which work is scheduled. 76 | 77 | 78 | 79 | 80 | Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers. 81 | 82 | 83 | 84 | 85 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher. 86 | 87 | The type of the elements in the source sequence. 88 | Source sequence. 89 | Dispatcher whose associated message loop is used to notify observers on. 90 | The source sequence whose observations happen on the specified dispatcher. 91 | or is null. 92 | 93 | 94 | 95 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher. 96 | 97 | The type of the elements in the source sequence. 98 | Source sequence. 99 | Dispatcher whose associated message loop is used to notify observers on. 100 | Priority to schedule work items at. 101 | The source sequence whose observations happen on the specified dispatcher. 102 | or is null. 103 | 104 | 105 | 106 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object. 107 | 108 | The type of the elements in the source sequence. 109 | Source sequence. 110 | Object to get the dispatcher from. 111 | The source sequence whose observations happen on the specified object's dispatcher. 112 | or is null. 113 | 114 | 115 | 116 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object. 117 | 118 | The type of the elements in the source sequence. 119 | Source sequence. 120 | Object to get the dispatcher from. 121 | Priority to schedule work items at. 122 | The source sequence whose observations happen on the specified object's dispatcher. 123 | or is null. 124 | 125 | 126 | 127 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current window. 128 | 129 | The type of the elements in the source sequence. 130 | Source sequence. 131 | The source sequence whose observations happen on the current window's dispatcher. 132 | is null. 133 | 134 | 135 | 136 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current window. 137 | 138 | The type of the elements in the source sequence. 139 | Source sequence. 140 | Priority to schedule work items at. 141 | The source sequence whose observations happen on the current window's dispatcher. 142 | is null. 143 | 144 | 145 | 146 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher. 147 | 148 | The type of the elements in the source sequence. 149 | Source sequence. 150 | Dispatcher whose associated message loop is used to perform subscription and unsubscription actions on. 151 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher. 152 | or is null. 153 | 154 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher. 155 | In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use . 156 | 157 | 158 | 159 | 160 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher. 161 | 162 | The type of the elements in the source sequence. 163 | Source sequence. 164 | Dispatcher whose associated message loop is used to perform subscription and unsubscription actions on. 165 | Priority to schedule work items at. 166 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher. 167 | or is null. 168 | 169 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher. 170 | In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use . 171 | 172 | 173 | 174 | 175 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object. 176 | 177 | The type of the elements in the source sequence. 178 | Source sequence. 179 | Object to get the dispatcher from. 180 | The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher. 181 | or is null. 182 | 183 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object. 184 | In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use . 185 | 186 | 187 | 188 | 189 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object. 190 | 191 | The type of the elements in the source sequence. 192 | Source sequence. 193 | Object to get the dispatcher from. 194 | Priority to schedule work items at. 195 | The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher. 196 | or is null. 197 | 198 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object. 199 | In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use . 200 | 201 | 202 | 203 | 204 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current window. 205 | 206 | The type of the elements in the source sequence. 207 | Source sequence. 208 | The source sequence whose subscriptions and unsubscriptions happen on the current window's dispatcher. 209 | is null. 210 | 211 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current window. 212 | In order to invoke observer callbacks on the dispatcher associated with the current window, e.g. to render results in a control, use . 213 | 214 | 215 | 216 | 217 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current window. 218 | 219 | The type of the elements in the source sequence. 220 | Source sequence. 221 | Priority to schedule work items at. 222 | The source sequence whose subscriptions and unsubscriptions happen on the current window's dispatcher. 223 | is null. 224 | 225 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current window. 226 | In order to invoke observer callbacks on the dispatcher associated with the current window, e.g. to render results in a control, use . 227 | 228 | 229 | 230 | 231 | A strongly-typed resource class, for looking up localized strings, etc. 232 | 233 | 234 | 235 | 236 | Returns the cached ResourceManager instance used by this class. 237 | 238 | 239 | 240 | 241 | Overrides the current thread's CurrentUICulture property for all 242 | resource lookups using this strongly typed resource class. 243 | 244 | 245 | 246 | 247 | Looks up a localized string similar to The current thread has no Dispatcher associated with it.. 248 | 249 | 250 | 251 | 252 | Looks up a localized string similar to No current Window object found to obtain a CoreDispatcher from.. 253 | 254 | 255 | 256 | 257 | -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/NetCore45/System.Reactive.Windows.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Xaml.2.1.30214.0/lib/NetCore45/System.Reactive.Windows.Threading.dll -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Windows.Threading.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Reactive.Windows.Threading 5 | 6 | 7 | 8 | 9 | Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers. 10 | 11 | 12 | 13 | 14 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher. 15 | 16 | The type of the elements in the source sequence. 17 | Source sequence. 18 | Dispatcher whose associated message loop is used to to notify observers on. 19 | The source sequence whose observations happen on the specified dispatcher. 20 | or is null. 21 | 22 | 23 | 24 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher scheduler. 25 | 26 | The type of the elements in the source sequence. 27 | Source sequence. 28 | Dispatcher scheduler to notify observers on. 29 | The source sequence whose observations happen on the specified dispatcher scheduler. 30 | or is null. 31 | 32 | 33 | 34 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object. 35 | 36 | The type of the elements in the source sequence. 37 | Source sequence. 38 | Object to get the dispatcher from. 39 | The source sequence whose observations happen on the specified object's dispatcher. 40 | or is null. 41 | 42 | 43 | 44 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current thread. 45 | 46 | The type of the elements in the source sequence. 47 | Source sequence. 48 | The source sequence whose observations happen on the current thread's dispatcher. 49 | is null. 50 | 51 | 52 | 53 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher. 54 | 55 | The type of the elements in the source sequence. 56 | Source sequence. 57 | Dispatcher whose associated message loop is used to to perform subscription and unsubscription actions on. 58 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher. 59 | or is null. 60 | 61 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher. 62 | In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use . 63 | 64 | 65 | 66 | 67 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher scheduler. 68 | 69 | The type of the elements in the source sequence. 70 | Source sequence. 71 | Dispatcher scheduler to perform subscription and unsubscription actions on. 72 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher scheduler. 73 | or is null. 74 | 75 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified scheduler. 76 | In order to invoke observer callbacks on the specified scheduler, e.g. to render results in a control, use . 77 | 78 | 79 | 80 | 81 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object. 82 | 83 | The type of the elements in the source sequence. 84 | Source sequence. 85 | Object to get the dispatcher from. 86 | The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher. 87 | or is null. 88 | 89 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object. 90 | In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use . 91 | 92 | 93 | 94 | 95 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current thread. 96 | 97 | The type of the elements in the source sequence. 98 | Source sequence. 99 | The source sequence whose subscriptions and unsubscriptions happen on the current thread's dispatcher. 100 | is null. 101 | 102 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current thread. 103 | In order to invoke observer callbacks on the dispatcher associated with the current thread, e.g. to render results in a control, use . 104 | 105 | 106 | 107 | 108 | Represents an object that schedules units of work on a . 109 | 110 | 111 | This scheduler type is typically used indirectly through the and methods that use the Dispatcher on the calling thread. 112 | 113 | 114 | 115 | 116 | Constructs a DispatcherScheduler that schedules units of work on the given . 117 | 118 | Dispatcher to schedule work on. 119 | is null. 120 | 121 | 122 | 123 | Schedules an action to be executed on the dispatcher. 124 | 125 | The type of the state passed to the scheduled action. 126 | State passed to the action to be executed. 127 | Action to be executed. 128 | The disposable object used to cancel the scheduled action (best effort). 129 | is null. 130 | 131 | 132 | 133 | Schedules an action to be executed after dueTime on the dispatcher, using a object. 134 | 135 | The type of the state passed to the scheduled action. 136 | State passed to the action to be executed. 137 | Action to be executed. 138 | Relative time after which to execute the action. 139 | The disposable object used to cancel the scheduled action (best effort). 140 | is null. 141 | 142 | 143 | 144 | Schedules a periodic piece of work on the dispatcher, using a object. 145 | 146 | The type of the state passed to the scheduled action. 147 | Initial state passed to the action upon the first iteration. 148 | Period for running the work periodically. 149 | Action to be executed, potentially updating the state. 150 | The disposable object used to cancel the scheduled recurring action (best effort). 151 | is null. 152 | is less than TimeSpan.Zero. 153 | 154 | 155 | 156 | Gets the scheduler that schedules work on the current . 157 | 158 | 159 | 160 | 161 | Gets the scheduler that schedules work on the for the current thread. 162 | 163 | 164 | 165 | 166 | Gets the associated with the DispatcherScheduler. 167 | 168 | 169 | 170 | 171 | A strongly-typed resource class, for looking up localized strings, etc. 172 | 173 | 174 | 175 | 176 | Returns the cached ResourceManager instance used by this class. 177 | 178 | 179 | 180 | 181 | Overrides the current thread's CurrentUICulture property for all 182 | resource lookups using this strongly typed resource class. 183 | 184 | 185 | 186 | 187 | Looks up a localized string similar to The current thread has no Dispatcher associated with it.. 188 | 189 | 190 | 191 | 192 | Looks up a localized string similar to No current Window object found to obtain a CoreDispatcher from.. 193 | 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Windows.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Xaml.2.1.30214.0/lib/SL4-WindowsPhone71/System.Reactive.Windows.Threading.dll -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/SL4/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Xaml.2.1.30214.0/lib/SL4/_._ -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/SL5/System.Reactive.Windows.Threading.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Reactive.Windows.Threading 5 | 6 | 7 | 8 | 9 | Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers. 10 | 11 | 12 | 13 | 14 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher. 15 | 16 | The type of the elements in the source sequence. 17 | Source sequence. 18 | Dispatcher whose associated message loop is used to to notify observers on. 19 | The source sequence whose observations happen on the specified dispatcher. 20 | or is null. 21 | 22 | 23 | 24 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher scheduler. 25 | 26 | The type of the elements in the source sequence. 27 | Source sequence. 28 | Dispatcher scheduler to notify observers on. 29 | The source sequence whose observations happen on the specified dispatcher scheduler. 30 | or is null. 31 | 32 | 33 | 34 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object. 35 | 36 | The type of the elements in the source sequence. 37 | Source sequence. 38 | Object to get the dispatcher from. 39 | The source sequence whose observations happen on the specified object's dispatcher. 40 | or is null. 41 | 42 | 43 | 44 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current thread. 45 | 46 | The type of the elements in the source sequence. 47 | Source sequence. 48 | The source sequence whose observations happen on the current thread's dispatcher. 49 | is null. 50 | 51 | 52 | 53 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher. 54 | 55 | The type of the elements in the source sequence. 56 | Source sequence. 57 | Dispatcher whose associated message loop is used to to perform subscription and unsubscription actions on. 58 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher. 59 | or is null. 60 | 61 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher. 62 | In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use . 63 | 64 | 65 | 66 | 67 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher scheduler. 68 | 69 | The type of the elements in the source sequence. 70 | Source sequence. 71 | Dispatcher scheduler to perform subscription and unsubscription actions on. 72 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher scheduler. 73 | or is null. 74 | 75 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified scheduler. 76 | In order to invoke observer callbacks on the specified scheduler, e.g. to render results in a control, use . 77 | 78 | 79 | 80 | 81 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object. 82 | 83 | The type of the elements in the source sequence. 84 | Source sequence. 85 | Object to get the dispatcher from. 86 | The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher. 87 | or is null. 88 | 89 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object. 90 | In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use . 91 | 92 | 93 | 94 | 95 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current thread. 96 | 97 | The type of the elements in the source sequence. 98 | Source sequence. 99 | The source sequence whose subscriptions and unsubscriptions happen on the current thread's dispatcher. 100 | is null. 101 | 102 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current thread. 103 | In order to invoke observer callbacks on the dispatcher associated with the current thread, e.g. to render results in a control, use . 104 | 105 | 106 | 107 | 108 | Represents an object that schedules units of work on a . 109 | 110 | 111 | This scheduler type is typically used indirectly through the and methods that use the Dispatcher on the calling thread. 112 | 113 | 114 | 115 | 116 | Constructs a DispatcherScheduler that schedules units of work on the given . 117 | 118 | Dispatcher to schedule work on. 119 | is null. 120 | 121 | 122 | 123 | Schedules an action to be executed on the dispatcher. 124 | 125 | The type of the state passed to the scheduled action. 126 | State passed to the action to be executed. 127 | Action to be executed. 128 | The disposable object used to cancel the scheduled action (best effort). 129 | is null. 130 | 131 | 132 | 133 | Schedules an action to be executed after dueTime on the dispatcher, using a object. 134 | 135 | The type of the state passed to the scheduled action. 136 | State passed to the action to be executed. 137 | Action to be executed. 138 | Relative time after which to execute the action. 139 | The disposable object used to cancel the scheduled action (best effort). 140 | is null. 141 | 142 | 143 | 144 | Schedules a periodic piece of work on the dispatcher, using a object. 145 | 146 | The type of the state passed to the scheduled action. 147 | Initial state passed to the action upon the first iteration. 148 | Period for running the work periodically. 149 | Action to be executed, potentially updating the state. 150 | The disposable object used to cancel the scheduled recurring action (best effort). 151 | is null. 152 | is less than TimeSpan.Zero. 153 | 154 | 155 | 156 | Gets the scheduler that schedules work on the current . 157 | 158 | 159 | 160 | 161 | Gets the scheduler that schedules work on the for the current thread. 162 | 163 | 164 | 165 | 166 | Gets the associated with the DispatcherScheduler. 167 | 168 | 169 | 170 | 171 | A strongly-typed resource class, for looking up localized strings, etc. 172 | 173 | 174 | 175 | 176 | Returns the cached ResourceManager instance used by this class. 177 | 178 | 179 | 180 | 181 | Overrides the current thread's CurrentUICulture property for all 182 | resource lookups using this strongly typed resource class. 183 | 184 | 185 | 186 | 187 | Looks up a localized string similar to The current thread has no Dispatcher associated with it.. 188 | 189 | 190 | 191 | 192 | Looks up a localized string similar to No current Window object found to obtain a CoreDispatcher from.. 193 | 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/SL5/System.Reactive.Windows.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Xaml.2.1.30214.0/lib/SL5/System.Reactive.Windows.Threading.dll -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/WP8/System.Reactive.Windows.Threading.XML: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Reactive.Windows.Threading 5 | 6 | 7 | 8 | 9 | Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers. 10 | 11 | 12 | 13 | 14 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher. 15 | 16 | The type of the elements in the source sequence. 17 | Source sequence. 18 | Dispatcher whose associated message loop is used to to notify observers on. 19 | The source sequence whose observations happen on the specified dispatcher. 20 | or is null. 21 | 22 | 23 | 24 | Wraps the source sequence in order to run its observer callbacks on the specified dispatcher scheduler. 25 | 26 | The type of the elements in the source sequence. 27 | Source sequence. 28 | Dispatcher scheduler to notify observers on. 29 | The source sequence whose observations happen on the specified dispatcher scheduler. 30 | or is null. 31 | 32 | 33 | 34 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object. 35 | 36 | The type of the elements in the source sequence. 37 | Source sequence. 38 | Object to get the dispatcher from. 39 | The source sequence whose observations happen on the specified object's dispatcher. 40 | or is null. 41 | 42 | 43 | 44 | Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current thread. 45 | 46 | The type of the elements in the source sequence. 47 | Source sequence. 48 | The source sequence whose observations happen on the current thread's dispatcher. 49 | is null. 50 | 51 | 52 | 53 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher. 54 | 55 | The type of the elements in the source sequence. 56 | Source sequence. 57 | Dispatcher whose associated message loop is used to to perform subscription and unsubscription actions on. 58 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher. 59 | or is null. 60 | 61 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher. 62 | In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use . 63 | 64 | 65 | 66 | 67 | Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher scheduler. 68 | 69 | The type of the elements in the source sequence. 70 | Source sequence. 71 | Dispatcher scheduler to perform subscription and unsubscription actions on. 72 | The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher scheduler. 73 | or is null. 74 | 75 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified scheduler. 76 | In order to invoke observer callbacks on the specified scheduler, e.g. to render results in a control, use . 77 | 78 | 79 | 80 | 81 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object. 82 | 83 | The type of the elements in the source sequence. 84 | Source sequence. 85 | Object to get the dispatcher from. 86 | The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher. 87 | or is null. 88 | 89 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object. 90 | In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use . 91 | 92 | 93 | 94 | 95 | Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current thread. 96 | 97 | The type of the elements in the source sequence. 98 | Source sequence. 99 | The source sequence whose subscriptions and unsubscriptions happen on the current thread's dispatcher. 100 | is null. 101 | 102 | Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current thread. 103 | In order to invoke observer callbacks on the dispatcher associated with the current thread, e.g. to render results in a control, use . 104 | 105 | 106 | 107 | 108 | Represents an object that schedules units of work on a . 109 | 110 | 111 | This scheduler type is typically used indirectly through the and methods that use the Dispatcher on the calling thread. 112 | 113 | 114 | 115 | 116 | Constructs a DispatcherScheduler that schedules units of work on the given . 117 | 118 | Dispatcher to schedule work on. 119 | is null. 120 | 121 | 122 | 123 | Schedules an action to be executed on the dispatcher. 124 | 125 | The type of the state passed to the scheduled action. 126 | State passed to the action to be executed. 127 | Action to be executed. 128 | The disposable object used to cancel the scheduled action (best effort). 129 | is null. 130 | 131 | 132 | 133 | Schedules an action to be executed after dueTime on the dispatcher, using a object. 134 | 135 | The type of the state passed to the scheduled action. 136 | State passed to the action to be executed. 137 | Action to be executed. 138 | Relative time after which to execute the action. 139 | The disposable object used to cancel the scheduled action (best effort). 140 | is null. 141 | 142 | 143 | 144 | Schedules a periodic piece of work on the dispatcher, using a object. 145 | 146 | The type of the state passed to the scheduled action. 147 | Initial state passed to the action upon the first iteration. 148 | Period for running the work periodically. 149 | Action to be executed, potentially updating the state. 150 | The disposable object used to cancel the scheduled recurring action (best effort). 151 | is null. 152 | is less than TimeSpan.Zero. 153 | 154 | 155 | 156 | Gets the scheduler that schedules work on the current . 157 | 158 | 159 | 160 | 161 | Gets the scheduler that schedules work on the for the current thread. 162 | 163 | 164 | 165 | 166 | Gets the associated with the DispatcherScheduler. 167 | 168 | 169 | 170 | 171 | A strongly-typed resource class, for looking up localized strings, etc. 172 | 173 | 174 | 175 | 176 | Returns the cached ResourceManager instance used by this class. 177 | 178 | 179 | 180 | 181 | Overrides the current thread's CurrentUICulture property for all 182 | resource lookups using this strongly typed resource class. 183 | 184 | 185 | 186 | 187 | Looks up a localized string similar to The current thread has no Dispatcher associated with it.. 188 | 189 | 190 | 191 | 192 | Looks up a localized string similar to No current Window object found to obtain a CoreDispatcher from.. 193 | 194 | 195 | 196 | 197 | -------------------------------------------------------------------------------- /packages/Rx-Xaml.2.1.30214.0/lib/WP8/System.Reactive.Windows.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/Rx-Xaml.2.1.30214.0/lib/WP8/System.Reactive.Windows.Threading.dll -------------------------------------------------------------------------------- /packages/WpfAutoGrid.1.0.0.0/WpfAutoGrid.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/WpfAutoGrid.1.0.0.0/WpfAutoGrid.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/WpfAutoGrid.1.0.0.0/WpfAutoGrid.1.0.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WpfAutoGrid 5 | 1.0.0.0 6 | Wpf AutoGrid 7 | Charles Brown 8 | Charles Brown 9 | http://carbonrobot.github.com/wpf-autogrid 10 | false 11 | A flexible, easy to configure drop-in replacement for the standard WPF Grid control 12 | Initial Release 13 | Copyright 2013 14 | 15 | WPF Grid XAML Extensions 16 | 17 | -------------------------------------------------------------------------------- /packages/WpfAutoGrid.1.0.0.0/lib/net45/WpfAutoGrid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/WpfAutoGrid.1.0.0.0/lib/net45/WpfAutoGrid.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/lib/Monoandroid/ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/lib/Monoandroid/ReactiveUI.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/lib/Monomac/ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/lib/Monomac/ReactiveUI.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/lib/Monomac/ReactiveUI.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/lib/Monomac/ReactiveUI.mdb -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/lib/Monomac/ReactiveUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/lib/Monomac/ReactiveUI.xml -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/lib/Monotouch/ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/lib/Monotouch/ReactiveUI.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/lib/Portable-Net45+WinRT45+WP8/ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/lib/Portable-Net45+WinRT45+WP8/ReactiveUI.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/reactiveui-core.5.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/reactiveui-core.5.3.0.nupkg -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/reactiveui-core.5.3.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | reactiveui-core 5 | 5.3.0 6 | Paul Betts 7 | Paul Betts 8 | http://opensource.org/licenses/ms-pl.html 9 | http://www.reactiveui.net/ 10 | false 11 | An MVVM library for .NET that is deeply integrated with the Reactive Extensions 12 | en-us 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/tools/ICSharpCode.NRefactory.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/tools/ICSharpCode.NRefactory.CSharp.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/tools/ICSharpCode.NRefactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/tools/ICSharpCode.NRefactory.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/tools/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/tools/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/tools/Nustache.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/tools/Nustache.Core.dll -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/tools/RxUIScaffolding.psm1: -------------------------------------------------------------------------------- 1 | <# 2 | .SYNOPSIS 3 | Generates Reactive-UI objects from interfaces 4 | .DESCRIPTION 5 | Use this script to auto-scaffold your Reactive-UI applications. 6 | .PARAMETER TemplateType 7 | The RxUI object type you want to generate, one of: 'ViewModel', 8 | 'GeneratedViewModel', 'XamlControl', 'XamlCodeBehind' 9 | .PARAMETER InterfaceFile 10 | The file containing the interfaces you want to generate Reactive-UI 11 | object from 12 | .EXAMPLE 13 | C:\PS> ls -Recurse -Filter I*ViewModel.cs | Generate-RxUIObjects 'ViewModel' 14 | Generates a Reactive-UI ViewModel for all view model interfaces in 15 | the current folder tree. 16 | .NOTES 17 | 18 | #> 19 | function Invoke-Scaffolder { 20 | [CmdletBinding()] 21 | param ( 22 | [Parameter(Mandatory=$true, Position=0)] 23 | [ValidateSet('ViewModel', 'GeneratedViewModel', 'XamlControl', 'XamlCodeBehind')] 24 | [string]$TemplateType, 25 | 26 | [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=1)] 27 | [string]$InterfaceFile 28 | ) 29 | 30 | begin {} 31 | process { 32 | $exe = ls -r -fi 'RxUIViewModelGenerator.exe' | select -First 1 33 | if(-not $exe -or -not (Test-Path $exe.FullName)) { 34 | throw "$exe not found" 35 | } 36 | if(-not (Test-Path $InterfaceFile)) { 37 | $InterfaceFile = Join-Path $pwd $InterfaceFile 38 | if(-not (Test-Path $InterfaceFile)) { 39 | throw "$InterfaceFile does not exist" 40 | } 41 | } 42 | $InterfaceFile = (gi $InterfaceFile).FullName 43 | $cmd = "$($exe.FullName)" 44 | $args = "-t=$TemplateType", "-i=$InterfaceFile" 45 | & $cmd $args 46 | } 47 | end {} 48 | } 49 | 50 | Set-Alias rxui Invoke-Scaffolder 51 | 52 | Register-TabExpansion 'Generate-RxUIObjects' @{ 53 | 'TemplateType' = { 54 | "ViewModel", 55 | "GeneratedViewModel", 56 | "XamlControl", 57 | "XamlCodeBehind" 58 | } 59 | } 60 | 61 | Export-ModuleMember -Function * -Alias * -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/tools/RxUIViewModelGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-core.5.3.0/tools/RxUIViewModelGenerator.exe -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/tools/RxUIViewModelGenerator.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/reactiveui-core.5.3.0/tools/init.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package) 2 | 3 | Import-Module (Join-Path $toolsPath RxUIScaffolding.psm1) -Force -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/Monoandroid/ReactiveUI.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/Monoandroid/ReactiveUI.Android.dll -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/Monoandroid/ReactiveUI.Android.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ReactiveUI.Android 5 | 6 | 7 | 8 | 9 | AndroidUIScheduler is a scheduler that schedules items on a running 10 | Activity's main thread. This is the moral equivalent of 11 | DispatcherScheduler, but since every Activity runs separately, you must 12 | assign RxApp.MainThreadScheduler to an instance of this at the start of 13 | every activity. 14 | 15 | 16 | 17 | 18 | This binding type converter uses the built-in WPF component model 19 | conversions to get a whole bunch of conversions for free. Unfortunately, 20 | these are pretty gutted on some other platforms like Silverlight. 21 | 22 | 23 | 24 | 25 | Configuration map 26 | 27 | 28 | 29 | 30 | Registers an observable factory for the specified type and property. 31 | 32 | Type. 33 | Property. 34 | Create observable. 35 | 36 | 37 | 38 | Creates a commands binding from event and a property 39 | 40 | The binding from event. 41 | Command. 42 | Target. 43 | Command parameter. 44 | Event name. 45 | Enable property name. 46 | 47 | 48 | 49 | Because RxUI.dll is in a PLib, it doesn't have the SuperPowers it needs 50 | to be able to really detect whether it's in a unit test runner. This class 51 | is much better at it. 52 | 53 | 54 | 55 | 56 | Ignore me. This class is a secret handshake between RxUI and RxUI.Xaml 57 | in order to register certain classes on startup that would be difficult 58 | to register otherwise. 59 | 60 | 61 | 62 | 63 | This is an Activity that is both an Activity and has ReactiveObject powers 64 | (i.e. you can call RaiseAndSetIfChanged) 65 | 66 | 67 | 68 | 69 | This is an Activity that is both an Activity and has ReactiveObject powers 70 | (i.e. you can call RaiseAndSetIfChanged) 71 | 72 | 73 | 74 | 75 | Represents an Observable that fires *before* a property is about to 76 | be changed. 77 | 78 | 79 | 80 | 81 | Represents an Observable that fires *after* a property has changed. 82 | 83 | 84 | 85 | 86 | When this method is called, an object will not fire change 87 | notifications (neither traditional nor Observable notifications) 88 | until the return value is disposed. 89 | 90 | An object that, when disposed, reenables change 91 | notifications. 92 | 93 | 94 | 95 | RaiseAndSetIfChanged fully implements a Setter for a read-write 96 | property on a ReactiveObject, using CallerMemberName to raise the notification 97 | and the ref to the backing field to set the property. 98 | 99 | The type of the This. 100 | The type of the return value. 101 | The raising the notification. 102 | A Reference to the backing field for this 103 | property. 104 | The new value. 105 | The name of the property, usually 106 | automatically provided through the CallerMemberName attribute. 107 | The newly set value, normally discarded. 108 | 109 | 110 | 111 | Use this method in your ReactiveObject classes when creating custom 112 | properties where raiseAndSetIfChanged doesn't suffice. 113 | 114 | The instance of ReactiveObject on which the property has changed. 115 | 116 | A string representing the name of the property that has been changed. 117 | Leave null to let the runtime set to caller member name. 118 | 119 | 120 | 121 | 122 | Use this method in your ReactiveObject classes when creating custom 123 | properties where raiseAndSetIfChanged doesn't suffice. 124 | 125 | The instance of ReactiveObject on which the property has changed. 126 | 127 | A string representing the name of the property that has been changed. 128 | Leave null to let the runtime set to caller member name. 129 | 130 | 131 | 132 | 133 | This is a Fragment that is both an Activity and has ReactiveObject powers 134 | (i.e. you can call RaiseAndSetIfChanged) 135 | 136 | 137 | 138 | 139 | This is a Fragment that is both an Activity and has ReactiveObject powers 140 | (i.e. you can call RaiseAndSetIfChanged) 141 | 142 | 143 | 144 | 145 | Represents an Observable that fires *before* a property is about to 146 | be changed. 147 | 148 | 149 | 150 | 151 | Represents an Observable that fires *after* a property has changed. 152 | 153 | 154 | 155 | 156 | When this method is called, an object will not fire change 157 | notifications (neither traditional nor Observable notifications) 158 | until the return value is disposed. 159 | 160 | An object that, when disposed, reenables change 161 | notifications. 162 | 163 | 164 | 165 | RaiseAndSetIfChanged fully implements a Setter for a read-write 166 | property on a ReactiveObject, using CallerMemberName to raise the notification 167 | and the ref to the backing field to set the property. 168 | 169 | The type of the This. 170 | The type of the return value. 171 | The raising the notification. 172 | A Reference to the backing field for this 173 | property. 174 | The new value. 175 | The name of the property, usually 176 | automatically provided through the CallerMemberName attribute. 177 | The newly set value, normally discarded. 178 | 179 | 180 | 181 | Use this method in your ReactiveObject classes when creating custom 182 | properties where raiseAndSetIfChanged doesn't suffice. 183 | 184 | The instance of ReactiveObject on which the property has changed. 185 | 186 | A string representing the name of the property that has been changed. 187 | Leave null to let the runtime set to caller member name. 188 | 189 | 190 | 191 | 192 | Use this method in your ReactiveObject classes when creating custom 193 | properties where raiseAndSetIfChanged doesn't suffice. 194 | 195 | The instance of ReactiveObject on which the property has changed. 196 | 197 | A string representing the name of the property that has been changed. 198 | Leave null to let the runtime set to caller member name. 199 | 200 | 201 | 202 | 203 | Default property bindings for common Android widgets 204 | 205 | 206 | 207 | 208 | Android view objects are not Generally Observable™, so hard-code some 209 | particularly useful types. 210 | 211 | 212 | 213 | 214 | -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/Monomac/ReactiveUI.Cocoa.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/Monomac/ReactiveUI.Cocoa.dll -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/Monomac/ReactiveUI.Cocoa.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/Monomac/ReactiveUI.Cocoa.mdb -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/Monomac/ReactiveUI.Cocoa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/Monomac/ReactiveUI.Cocoa.xml -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/Monotouch/ReactiveUI.Cocoa.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/Monotouch/ReactiveUI.Cocoa.dll -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/Monotouch/ReactiveUI.Cocoa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/Monotouch/ReactiveUI.Cocoa.xml -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/WP8/ReactiveUI.Blend.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/WP8/ReactiveUI.Blend.dll -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/WP8/ReactiveUI.Blend.dll.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/WP8/ReactiveUI.Blend.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ReactiveUI.Blend 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/WP8/ReactiveUI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/WP8/ReactiveUI.Xaml.dll -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/WP8/ReactiveUI.Xaml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ReactiveUI.Xaml 5 | 6 | 7 | 8 | 9 | Because RxUI.dll is in a PLib, it doesn't have the SuperPowers it needs 10 | to be able to really detect whether it's in a unit test runner. This class 11 | is much better at it. 12 | 13 | 14 | 15 | 16 | Ignore me. This class is a secret handshake between RxUI and RxUI.Xaml 17 | in order to register certain classes on startup that would be difficult 18 | to register otherwise. 19 | 20 | 21 | 22 | 23 | AutoDataTemplateBindingHook is a binding hook that checks ItemsControls 24 | that don't have DataTemplates, and assigns a default DataTemplate that 25 | loads the View associated with each ViewModel. 26 | 27 | 28 | 29 | 30 | This type convert converts between Boolean and XAML Visibility - the 31 | conversionHint is a BooleanToVisibilityHint 32 | 33 | 34 | 35 | 36 | This binder is the default binder for connecting to arbitrary events 37 | 38 | 39 | 40 | 41 | This control hosts the View associated with a Router, and will display 42 | the View and wire up the ViewModel whenever a new ViewModel is 43 | navigated to. Put this control as the only control in your Window. 44 | 45 | 46 | 47 | 48 | A ContentControl that animates the transition when its content is changed. 49 | 50 | 51 | 52 | 53 | for the property. 54 | 55 | 56 | 57 | 58 | for the property. 59 | 60 | 61 | 62 | 63 | Initializes a new instance of the class. 64 | 65 | 66 | 67 | 68 | Called when the value of the property changes. 69 | 70 | The old value of the property. 71 | The new value of the property. 72 | 73 | 74 | 75 | Aborts the transition. 76 | 77 | 78 | 79 | 80 | Sets default values for certain transition types. 81 | 82 | 83 | 84 | 85 | Occurs when a transition has completed. 86 | 87 | 88 | 89 | 90 | Occurs when a transition has started. 91 | 92 | 93 | 94 | 95 | Gets or sets the transition. 96 | 97 | The transition. 98 | 99 | 100 | 101 | Gets or sets the transition part. 102 | 103 | The transition part. 104 | 105 | 106 | 107 | Represents the type of transition that a TransitioningContentControl will perform. 108 | 109 | 110 | 111 | 112 | A simple fading transition. 113 | 114 | 115 | 116 | 117 | A transition that fades the new element in from the top. 118 | 119 | 120 | 121 | 122 | A transition that slides old content left and out of view, then slides new content back in from the same direction. 123 | 124 | 125 | 126 | 127 | Represents the part of the transition that the developer would like the TransitioningContentControl to perform 128 | 129 | This only applies to certain TransitionTypes. An InvalidOperationException will be thrown if the TransitionType does not support the TransitionPartType. Default is OutIn. 130 | 131 | 132 | 133 | Transitions out only. 134 | 135 | 136 | 137 | 138 | Transitions in only. 139 | 140 | 141 | 142 | 143 | Transitions in and out. 144 | 145 | 146 | 147 | 148 | The Router associated with this View Host. 149 | 150 | 151 | 152 | 153 | This content is displayed whenever there is no page currently 154 | routed. 155 | 156 | 157 | 158 | 159 | This content control will automatically load the View associated with 160 | the ViewModel property and display it. This control is very useful 161 | inside a DataTemplate to display the View associated with a ViewModel. 162 | 163 | 164 | 165 | 166 | The ViewModel to display 167 | 168 | 169 | 170 | 171 | If no ViewModel is displayed, this content (i.e. a control) will be displayed. 172 | 173 | 174 | 175 | 176 | -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/WinRT45/ReactiveUI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/WinRT45/ReactiveUI.Xaml.dll -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/WinRT45/ReactiveUI.Xaml.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/WinRT45/ReactiveUI.Xaml.pri -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/WinRT45/ReactiveUI.Xaml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ReactiveUI.Xaml 5 | 6 | 7 | 8 | 9 | Because RxUI.dll is in a PLib, it doesn't have the SuperPowers it needs 10 | to be able to really detect whether it's in a unit test runner. This class 11 | is much better at it. 12 | 13 | 14 | 15 | 16 | Ignore me. This class is a secret handshake between RxUI and RxUI.Xaml 17 | in order to register certain classes on startup that would be difficult 18 | to register otherwise. 19 | 20 | 21 | 22 | 23 | AutoDataTemplateBindingHook is a binding hook that checks ItemsControls 24 | that don't have DataTemplates, and assigns a default DataTemplate that 25 | loads the View associated with each ViewModel. 26 | 27 | 28 | 29 | 30 | This type convert converts between Boolean and XAML Visibility - the 31 | conversionHint is a BooleanToVisibilityHint 32 | 33 | 34 | 35 | 36 | This binder is the default binder for connecting to arbitrary events 37 | 38 | 39 | 40 | 41 | This control hosts the View associated with a Router, and will display 42 | the View and wire up the ViewModel whenever a new ViewModel is 43 | navigated to. Put this control as the only control in your Window. 44 | 45 | 46 | 47 | 48 | The Router associated with this View Host. 49 | 50 | 51 | 52 | 53 | This content is displayed whenever there is no page currently 54 | routed. 55 | 56 | 57 | 58 | 59 | This content control will automatically load the View associated with 60 | the ViewModel property and display it. This control is very useful 61 | inside a DataTemplate to display the View associated with a ViewModel. 62 | 63 | 64 | 65 | 66 | The ViewModel to display 67 | 68 | 69 | 70 | 71 | If no ViewModel is displayed, this content (i.e. a control) will be displayed. 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/net45/ReactiveUI.Blend.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/net45/ReactiveUI.Blend.dll -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/net45/ReactiveUI.Blend.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ReactiveUI.Blend 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/net45/ReactiveUI.Xaml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/lib/net45/ReactiveUI.Xaml.dll -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/lib/net45/ReactiveUI.Xaml.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ReactiveUI.Xaml 5 | 6 | 7 | 8 | 9 | This binding type converter uses the built-in WPF component model 10 | conversions to get a whole bunch of conversions for free. Unfortunately, 11 | these are pretty gutted on some other platforms like Silverlight. 12 | 13 | 14 | 15 | 16 | Because RxUI.dll is in a PLib, it doesn't have the SuperPowers it needs 17 | to be able to really detect whether it's in a unit test runner. This class 18 | is much better at it. 19 | 20 | 21 | 22 | 23 | Ignore me. This class is a secret handshake between RxUI and RxUI.Xaml 24 | in order to register certain classes on startup that would be difficult 25 | to register otherwise. 26 | 27 | 28 | 29 | 30 | AutoDataTemplateBindingHook is a binding hook that checks ItemsControls 31 | that don't have DataTemplates, and assigns a default DataTemplate that 32 | loads the View associated with each ViewModel. 33 | 34 | 35 | 36 | 37 | This type convert converts between Boolean and XAML Visibility - the 38 | conversionHint is a BooleanToVisibilityHint 39 | 40 | 41 | 42 | 43 | This binder is the default binder for connecting to arbitrary events 44 | 45 | 46 | 47 | 48 | This control hosts the View associated with a Router, and will display 49 | the View and wire up the ViewModel whenever a new ViewModel is 50 | navigated to. Put this control as the only control in your Window. 51 | 52 | 53 | 54 | 55 | A ContentControl that animates the transition when its content is changed. 56 | 57 | 58 | 59 | 60 | for the property. 61 | 62 | 63 | 64 | 65 | for the property. 66 | 67 | 68 | 69 | 70 | Initializes a new instance of the class. 71 | 72 | 73 | 74 | 75 | Called when the value of the property changes. 76 | 77 | The old value of the property. 78 | The new value of the property. 79 | 80 | 81 | 82 | Aborts the transition. 83 | 84 | 85 | 86 | 87 | Sets default values for certain transition types. 88 | 89 | 90 | 91 | 92 | Occurs when a transition has completed. 93 | 94 | 95 | 96 | 97 | Occurs when a transition has started. 98 | 99 | 100 | 101 | 102 | Gets or sets the transition. 103 | 104 | The transition. 105 | 106 | 107 | 108 | Gets or sets the transition part. 109 | 110 | The transition part. 111 | 112 | 113 | 114 | Represents the type of transition that a TransitioningContentControl will perform. 115 | 116 | 117 | 118 | 119 | A simple fading transition. 120 | 121 | 122 | 123 | 124 | A transition that fades the new element in from the top. 125 | 126 | 127 | 128 | 129 | A transition that slides old content left and out of view, then slides new content back in from the same direction. 130 | 131 | 132 | 133 | 134 | Represents the part of the transition that the developer would like the TransitioningContentControl to perform 135 | 136 | This only applies to certain TransitionTypes. An InvalidOperationException will be thrown if the TransitionType does not support the TransitionPartType. Default is OutIn. 137 | 138 | 139 | 140 | Transitions out only. 141 | 142 | 143 | 144 | 145 | Transitions in only. 146 | 147 | 148 | 149 | 150 | Transitions in and out. 151 | 152 | 153 | 154 | 155 | The Router associated with this View Host. 156 | 157 | 158 | 159 | 160 | This content is displayed whenever there is no page currently 161 | routed. 162 | 163 | 164 | 165 | 166 | This content control will automatically load the View associated with 167 | the ViewModel property and display it. This control is very useful 168 | inside a DataTemplate to display the View associated with a ViewModel. 169 | 170 | 171 | 172 | 173 | The ViewModel to display 174 | 175 | 176 | 177 | 178 | If no ViewModel is displayed, this content (i.e. a control) will be displayed. 179 | 180 | 181 | 182 | 183 | -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/reactiveui-platforms.5.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-platforms.5.3.0/reactiveui-platforms.5.3.0.nupkg -------------------------------------------------------------------------------- /packages/reactiveui-platforms.5.3.0/reactiveui-platforms.5.3.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | reactiveui-platforms 5 | 5.3.0 6 | Paul Betts 7 | Paul Betts 8 | http://opensource.org/licenses/ms-pl.html 9 | http://www.reactiveui.net/ 10 | false 11 | Platform specific extensions to ReactiveUI 12 | en-us 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /packages/reactiveui-xaml.5.3.0/reactiveui-xaml.5.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/ReactiveGitHubClient/c86275023afa76042b0b4e7078d4966fff8c4588/packages/reactiveui-xaml.5.3.0/reactiveui-xaml.5.3.0.nupkg -------------------------------------------------------------------------------- /packages/reactiveui-xaml.5.3.0/reactiveui-xaml.5.3.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | reactiveui-xaml 5 | 5.3.0 6 | reactiveui-xaml 7 | Paul Betts 8 | Paul Betts 9 | http://opensource.org/licenses/ms-pl.html 10 | http://www.reactiveui.net/ 11 | false 12 | An MVVM library for WPF and Silverlight that is deeply integrated with the Reactive Extensions 13 | 14 | 15 | en-us 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | --------------------------------------------------------------------------------