Created
November 25, 2011 07:53
-
-
Save masaru-b-cl/1393017 to your computer and use it in GitHub Desktop.
DragAndDropWebFormApplication
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bin/ | |
obj/ | |
*.suo | |
*.user |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Reflection; | |
using System.Runtime.CompilerServices; | |
using System.Runtime.InteropServices; | |
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 | |
// アセンブリに関連付けられている情報を変更するには、 | |
// これらの属性値を変更してください。 | |
[assembly: AssemblyTitle("DragAndDropWebFormApplication")] | |
[assembly: AssemblyDescription("")] | |
[assembly: AssemblyConfiguration("")] | |
[assembly: AssemblyCompany("")] | |
[assembly: AssemblyProduct("DragAndDropWebFormApplication")] | |
[assembly: AssemblyCopyright("Copyright © 2011")] | |
[assembly: AssemblyTrademark("")] | |
[assembly: AssemblyCulture("")] | |
// ComVisible を false に設定すると、その型はこのアセンブリ内で COM コンポーネントから | |
// 参照不可能になります。COM からこのアセンブリ内の型にアクセスする場合は、 | |
// その型の ComVisible 属性を true に設定してください。 | |
[assembly: ComVisible(false)] | |
// 次の GUID は、このプロジェクトが COM に公開される場合の、typelib の ID です | |
[assembly: Guid("aa9cbb11-404c-4732-9e16-e86d341d5d97")] | |
// アセンブリのバージョン情報は、以下の 4 つの値で構成されています: | |
// | |
// Major Version | |
// Minor Version | |
// Build Number | |
// Revision | |
// | |
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を | |
// 既定値にすることができます: | |
// [assembly: AssemblyVersion("1.0.*")] | |
[assembly: AssemblyVersion("1.0.0.0")] | |
[assembly: AssemblyFileVersion("1.0.0.0")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> | |
<ProductVersion>8.0.30703</ProductVersion> | |
<SchemaVersion>2.0</SchemaVersion> | |
<ProjectGuid>{881C2BC9-E8F3-4C34-B3FF-81EADAD00EF9}</ProjectGuid> | |
<OutputType>WinExe</OutputType> | |
<AppDesignerFolder>Properties</AppDesignerFolder> | |
<RootNamespace>DragAndDropWebFormApplication</RootNamespace> | |
<AssemblyName>DragAndDropWebFormApplication</AssemblyName> | |
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | |
<TargetFrameworkProfile>Client</TargetFrameworkProfile> | |
<FileAlignment>512</FileAlignment> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> | |
<PlatformTarget>x86</PlatformTarget> | |
<DebugSymbols>true</DebugSymbols> | |
<DebugType>full</DebugType> | |
<Optimize>false</Optimize> | |
<OutputPath>bin\Debug\</OutputPath> | |
<DefineConstants>DEBUG;TRACE</DefineConstants> | |
<ErrorReport>prompt</ErrorReport> | |
<WarningLevel>4</WarningLevel> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> | |
<PlatformTarget>x86</PlatformTarget> | |
<DebugType>pdbonly</DebugType> | |
<Optimize>true</Optimize> | |
<OutputPath>bin\Release\</OutputPath> | |
<DefineConstants>TRACE</DefineConstants> | |
<ErrorReport>prompt</ErrorReport> | |
<WarningLevel>4</WarningLevel> | |
</PropertyGroup> | |
<ItemGroup> | |
<Reference Include="System" /> | |
<Reference Include="System.Core" /> | |
<Reference Include="System.Reactive"> | |
<HintPath>packages\Rx-Main.1.0.10621\lib\Net4\System.Reactive.dll</HintPath> | |
</Reference> | |
<Reference Include="System.Xml.Linq" /> | |
<Reference Include="System.Data.DataSetExtensions" /> | |
<Reference Include="Microsoft.CSharp" /> | |
<Reference Include="System.Data" /> | |
<Reference Include="System.Deployment" /> | |
<Reference Include="System.Drawing" /> | |
<Reference Include="System.Windows.Forms" /> | |
<Reference Include="System.Xml" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Compile Include="Form1.cs"> | |
<SubType>Form</SubType> | |
</Compile> | |
<Compile Include="Form1.Designer.cs"> | |
<DependentUpon>Form1.cs</DependentUpon> | |
</Compile> | |
<Compile Include="MyListViewItem.cs" /> | |
<Compile Include="Program.cs" /> | |
<Compile Include="Properties\AssemblyInfo.cs" /> | |
<EmbeddedResource Include="Form1.resx"> | |
<DependentUpon>Form1.cs</DependentUpon> | |
</EmbeddedResource> | |
<EmbeddedResource Include="Properties\Resources.resx"> | |
<Generator>ResXFileCodeGenerator</Generator> | |
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | |
<SubType>Designer</SubType> | |
</EmbeddedResource> | |
<Compile Include="Properties\Resources.Designer.cs"> | |
<AutoGen>True</AutoGen> | |
<DependentUpon>Resources.resx</DependentUpon> | |
</Compile> | |
<None Include="packages.config" /> | |
<None Include="Properties\Settings.settings"> | |
<Generator>SettingsSingleFileGenerator</Generator> | |
<LastGenOutput>Settings.Designer.cs</LastGenOutput> | |
</None> | |
<Compile Include="Properties\Settings.Designer.cs"> | |
<AutoGen>True</AutoGen> | |
<DependentUpon>Settings.settings</DependentUpon> | |
<DesignTimeSharedInput>True</DesignTimeSharedInput> | |
</Compile> | |
</ItemGroup> | |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |
Other similar extension points exist, see Microsoft.Common.targets. | |
<Target Name="BeforeBuild"> | |
</Target> | |
<Target Name="AfterBuild"> | |
</Target> | |
--> | |
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| |
Microsoft Visual Studio Solution File, Format Version 11.00 | |
# Visual Studio 2010 | |
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DragAndDropWebFormApplication", "DragAndDropWebFormApplication.csproj", "{881C2BC9-E8F3-4C34-B3FF-81EADAD00EF9}" | |
EndProject | |
Global | |
GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
Debug|x86 = Debug|x86 | |
Release|x86 = Release|x86 | |
EndGlobalSection | |
GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
{881C2BC9-E8F3-4C34-B3FF-81EADAD00EF9}.Debug|x86.ActiveCfg = Debug|x86 | |
{881C2BC9-E8F3-4C34-B3FF-81EADAD00EF9}.Debug|x86.Build.0 = Debug|x86 | |
{881C2BC9-E8F3-4C34-B3FF-81EADAD00EF9}.Release|x86.ActiveCfg = Release|x86 | |
{881C2BC9-E8F3-4C34-B3FF-81EADAD00EF9}.Release|x86.Build.0 = Release|x86 | |
EndGlobalSection | |
GlobalSection(SolutionProperties) = preSolution | |
HideSolutionNode = FALSE | |
EndGlobalSection | |
EndGlobal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
using System.Reactive; | |
using System.Reactive.Linq; | |
namespace DragAndDropWebFormApplication | |
{ | |
public static class ListViewExtensions | |
{ | |
public static IObservable<ItemDragEventArgs> ItemDragAsObservable(this ListView listView) | |
{ | |
return Observable.FromEventPattern<ItemDragEventHandler, ItemDragEventArgs>( | |
h => h.Invoke, | |
h => listView.ItemDrag += h, | |
h => listView.ItemDrag -= h) | |
.Select(e => e.EventArgs); | |
// ↑と等価 | |
//return Observable.FromEvent<ItemDragEventHandler, ItemDragEventArgs>( | |
// h => (sender, e) => h(e), | |
// h => listView.ItemDrag += h, | |
// h => listView.ItemDrag -= h); | |
} | |
} | |
public static class TextBoxExtensions | |
{ | |
public static IObservable<DragEventArgs> DragEnterAsObservable(this TextBox textBox) | |
{ | |
return Observable.FromEvent<DragEventHandler, DragEventArgs>( | |
h => (sender, e) => h(e), | |
h => textBox.DragEnter += h, | |
h => textBox.DragEnter -= h); | |
} | |
} | |
public partial class Form1 : Form | |
{ | |
public Form1() | |
{ | |
InitializeComponent(); | |
this.listView1.ItemDragAsObservable() | |
.Select(e => e.Item as MyListViewItem) | |
.Subscribe(lvi => | |
{ | |
DoDragDrop(lvi, DragDropEffects.Copy); | |
}); | |
// ↑と等価 | |
//Observable.FromEvent<ItemDragEventHandler, ItemDragEventArgs>( | |
// h => (sender, e) => h(e), | |
// h => this.listView1.ItemDrag += h, | |
// h => this.listView1.ItemDrag -= h) | |
// .Subscribe(lvi => | |
// { | |
// DoDragDrop(lvi, DragDropEffects.Copy); | |
// }); | |
var textboxes = new []{this.textBox1, this.textBox2}; | |
textboxes.Select(textBox => textBox.DragEnterAsObservable()) | |
.Merge() | |
.Subscribe(e => | |
{ | |
e.Effect = DragDropEffects.Copy; | |
}); | |
textboxes.Select(textBox => Observable.FromEventPattern<DragEventHandler, DragEventArgs>( | |
h => h.Invoke, | |
h => textBox.DragDrop += h, | |
h => textBox.DragDrop -= h)) | |
.Merge() | |
.Subscribe(e => | |
{ | |
var data = e.EventArgs.Data; | |
var textBox = e.Sender as TextBox; | |
if (data.GetDataPresent(typeof(MyListViewItem))) | |
{ | |
var lvi = data.GetData(typeof(MyListViewItem)) as MyListViewItem; | |
textBox.Text = lvi.ItemCode; | |
} | |
}); | |
new []{this.button1, this.button2}.Select(button => | |
Observable.FromEvent<EventHandler, EventArgs>( | |
h => (sender, e) => h(e), | |
h => button.Click+= h, | |
h => button.Click -= h | |
)) | |
.Merge() | |
.Subscribe(_ => MessageBox.Show("Click!")); | |
} | |
private void Form1_Load(object sender, EventArgs e) | |
{ | |
this.listView1.Items.Add(new MyListViewItem("0001", "名称1")); | |
this.listView1.Items.Add(new MyListViewItem("0002", "名称2")); | |
this.listView1.Items.Add(new MyListViewItem("0003", "名称3")); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace DragAndDropWebFormApplication | |
{ | |
partial class Form1 | |
{ | |
/// <summary> | |
/// 必要なデザイナー変数です。 | |
/// </summary> | |
private System.ComponentModel.IContainer components = null; | |
/// <summary> | |
/// 使用中のリソースをすべてクリーンアップします。 | |
/// </summary> | |
/// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param> | |
protected override void Dispose(bool disposing) | |
{ | |
if (disposing && (components != null)) | |
{ | |
components.Dispose(); | |
} | |
base.Dispose(disposing); | |
} | |
#region Windows フォーム デザイナーで生成されたコード | |
/// <summary> | |
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を | |
/// コード エディターで変更しないでください。 | |
/// </summary> | |
private void InitializeComponent() | |
{ | |
this.listView1 = new System.Windows.Forms.ListView(); | |
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); | |
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); | |
this.textBox1 = new System.Windows.Forms.TextBox(); | |
this.button1 = new System.Windows.Forms.Button(); | |
this.button2 = new System.Windows.Forms.Button(); | |
this.textBox2 = new System.Windows.Forms.TextBox(); | |
this.SuspendLayout(); | |
// | |
// listView1 | |
// | |
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { | |
this.columnHeader1, | |
this.columnHeader2}); | |
this.listView1.Location = new System.Drawing.Point(13, 23); | |
this.listView1.Name = "listView1"; | |
this.listView1.Size = new System.Drawing.Size(129, 100); | |
this.listView1.TabIndex = 0; | |
this.listView1.UseCompatibleStateImageBehavior = false; | |
this.listView1.View = System.Windows.Forms.View.Details; | |
// | |
// columnHeader1 | |
// | |
this.columnHeader1.Text = "コード"; | |
// | |
// columnHeader2 | |
// | |
this.columnHeader2.Text = "名称"; | |
// | |
// textBox1 | |
// | |
this.textBox1.AllowDrop = true; | |
this.textBox1.Location = new System.Drawing.Point(13, 168); | |
this.textBox1.Name = "textBox1"; | |
this.textBox1.Size = new System.Drawing.Size(100, 19); | |
this.textBox1.TabIndex = 1; | |
// | |
// button1 | |
// | |
this.button1.Location = new System.Drawing.Point(173, 36); | |
this.button1.Name = "button1"; | |
this.button1.Size = new System.Drawing.Size(75, 23); | |
this.button1.TabIndex = 3; | |
this.button1.Text = "button1"; | |
this.button1.UseVisualStyleBackColor = true; | |
// | |
// button2 | |
// | |
this.button2.Location = new System.Drawing.Point(173, 75); | |
this.button2.Name = "button2"; | |
this.button2.Size = new System.Drawing.Size(75, 23); | |
this.button2.TabIndex = 4; | |
this.button2.Text = "button2"; | |
this.button2.UseVisualStyleBackColor = true; | |
// | |
// textBox2 | |
// | |
this.textBox2.AllowDrop = true; | |
this.textBox2.Location = new System.Drawing.Point(13, 194); | |
this.textBox2.Name = "textBox2"; | |
this.textBox2.Size = new System.Drawing.Size(100, 19); | |
this.textBox2.TabIndex = 5; | |
// | |
// Form1 | |
// | |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); | |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
this.ClientSize = new System.Drawing.Size(284, 262); | |
this.Controls.Add(this.textBox2); | |
this.Controls.Add(this.button2); | |
this.Controls.Add(this.button1); | |
this.Controls.Add(this.textBox1); | |
this.Controls.Add(this.listView1); | |
this.Name = "Form1"; | |
this.Text = "Form1"; | |
this.Load += new System.EventHandler(this.Form1_Load); | |
this.ResumeLayout(false); | |
this.PerformLayout(); | |
} | |
#endregion | |
private System.Windows.Forms.ListView listView1; | |
private System.Windows.Forms.TextBox textBox1; | |
private System.Windows.Forms.ColumnHeader columnHeader1; | |
private System.Windows.Forms.ColumnHeader columnHeader2; | |
private System.Windows.Forms.Button button1; | |
private System.Windows.Forms.Button button2; | |
private System.Windows.Forms.TextBox textBox2; | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<root> | |
<!-- | |
Microsoft ResX Schema | |
Version 2.0 | |
The primary goals of this format is to allow a simple XML format | |
that is mostly human readable. The generation and parsing of the | |
various data types are done through the TypeConverter classes | |
associated with the data types. | |
Example: | |
... ado.net/XML headers & schema ... | |
<resheader name="resmimetype">text/microsoft-resx</resheader> | |
<resheader name="version">2.0</resheader> | |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
<value>[base64 mime encoded serialized .NET Framework object]</value> | |
</data> | |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
<comment>This is a comment</comment> | |
</data> | |
There are any number of "resheader" rows that contain simple | |
name/value pairs. | |
Each data row contains a name, and value. The row also contains a | |
type or mimetype. Type corresponds to a .NET class that support | |
text/value conversion through the TypeConverter architecture. | |
Classes that don't support this are serialized and stored with the | |
mimetype set. | |
The mimetype is used for serialized objects, and tells the | |
ResXResourceReader how to depersist the object. This is currently not | |
extensible. For a given mimetype the value must be set accordingly: | |
Note - application/x-microsoft.net.object.binary.base64 is the format | |
that the ResXResourceWriter will generate, however the reader can | |
read any of the formats listed below. | |
mimetype: application/x-microsoft.net.object.binary.base64 | |
value : The object must be serialized with | |
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |
: and then encoded with base64 encoding. | |
mimetype: application/x-microsoft.net.object.soap.base64 | |
value : The object must be serialized with | |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
: and then encoded with base64 encoding. | |
mimetype: application/x-microsoft.net.object.bytearray.base64 | |
value : The object must be serialized into a byte array | |
: using a System.ComponentModel.TypeConverter | |
: and then encoded with base64 encoding. | |
--> | |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |
<xsd:element name="root" msdata:IsDataSet="true"> | |
<xsd:complexType> | |
<xsd:choice maxOccurs="unbounded"> | |
<xsd:element name="metadata"> | |
<xsd:complexType> | |
<xsd:sequence> | |
<xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
</xsd:sequence> | |
<xsd:attribute name="name" use="required" type="xsd:string" /> | |
<xsd:attribute name="type" type="xsd:string" /> | |
<xsd:attribute name="mimetype" type="xsd:string" /> | |
<xsd:attribute ref="xml:space" /> | |
</xsd:complexType> | |
</xsd:element> | |
<xsd:element name="assembly"> | |
<xsd:complexType> | |
<xsd:attribute name="alias" type="xsd:string" /> | |
<xsd:attribute name="name" type="xsd:string" /> | |
</xsd:complexType> | |
</xsd:element> | |
<xsd:element name="data"> | |
<xsd:complexType> | |
<xsd:sequence> | |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
</xsd:sequence> | |
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
<xsd:attribute ref="xml:space" /> | |
</xsd:complexType> | |
</xsd:element> | |
<xsd:element name="resheader"> | |
<xsd:complexType> | |
<xsd:sequence> | |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
</xsd:sequence> | |
<xsd:attribute name="name" type="xsd:string" use="required" /> | |
</xsd:complexType> | |
</xsd:element> | |
</xsd:choice> | |
</xsd:complexType> | |
</xsd:element> | |
</xsd:schema> | |
<resheader name="resmimetype"> | |
<value>text/microsoft-resx</value> | |
</resheader> | |
<resheader name="version"> | |
<value>2.0</value> | |
</resheader> | |
<resheader name="reader"> | |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
</resheader> | |
<resheader name="writer"> | |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
</resheader> | |
</root> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
namespace DragAndDropWebFormApplication | |
{ | |
public class MyListViewItem : ListViewItem | |
{ | |
public string ItemCode { get; set; } | |
public string ItemName { get; set; } | |
public MyListViewItem(string itemCode, string itemName) | |
{ | |
this.ItemCode = itemCode; | |
this.ItemName = itemName; | |
this.Text = itemName; | |
this.SubItems.Add(new ListViewSubItem { Text = itemCode }); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="Rx-Main" version="1.0.10621" /> | |
</packages> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Windows.Forms; | |
namespace DragAndDropWebFormApplication | |
{ | |
static class Program | |
{ | |
/// <summary> | |
/// アプリケーションのメイン エントリ ポイントです。 | |
/// </summary> | |
[STAThread] | |
static void Main() | |
{ | |
Application.EnableVisualStyles(); | |
Application.SetCompatibleTextRenderingDefault(false); | |
Application.Run(new Form1()); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------------------------------------------------------------------ | |
// <auto-generated> | |
// このコードはツールによって生成されました。 | |
// ランタイム バージョン:4.0.30319.239 | |
// | |
// このファイルへの変更は、以下の状況下で不正な動作の原因になったり、 | |
// コードが再生成されるときに損失したりします | |
// </auto-generated> | |
//------------------------------------------------------------------------------ | |
namespace DragAndDropWebFormApplication.Properties | |
{ | |
/// <summary> | |
/// ローカライズされた文字列などを検索するための、厳密に型指定されたリソース クラスです。 | |
/// </summary> | |
// このクラスは StronglyTypedResourceBuilder クラスが ResGen | |
// または Visual Studio のようなツールを使用して自動生成されました。 | |
// メンバーを追加または削除するには、.ResX ファイルを編集して、/str オプションと共に | |
// ResGen を実行し直すか、または VS プロジェクトをビルドし直します。 | |
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] | |
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] | |
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] | |
internal class Resources | |
{ | |
private static global::System.Resources.ResourceManager resourceMan; | |
private static global::System.Globalization.CultureInfo resourceCulture; | |
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] | |
internal Resources() | |
{ | |
} | |
/// <summary> | |
/// このクラスに使用される、キャッシュされた ResourceManager のインスタンスを返します。 | |
/// </summary> | |
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] | |
internal static global::System.Resources.ResourceManager ResourceManager | |
{ | |
get | |
{ | |
if ((resourceMan == null)) | |
{ | |
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DragAndDropWebFormApplication.Properties.Resources", typeof(Resources).Assembly); | |
resourceMan = temp; | |
} | |
return resourceMan; | |
} | |
} | |
/// <summary> | |
/// 厳密に型指定されたこのリソース クラスを使用して、すべての検索リソースに対し、 | |
/// 現在のスレッドの CurrentUICulture プロパティをオーバーライドします。 | |
/// </summary> | |
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] | |
internal static global::System.Globalization.CultureInfo Culture | |
{ | |
get | |
{ | |
return resourceCulture; | |
} | |
set | |
{ | |
resourceCulture = value; | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<root> | |
<!-- | |
Microsoft ResX Schema | |
Version 2.0 | |
The primary goals of this format is to allow a simple XML format | |
that is mostly human readable. The generation and parsing of the | |
various data types are done through the TypeConverter classes | |
associated with the data types. | |
Example: | |
... ado.net/XML headers & schema ... | |
<resheader name="resmimetype">text/microsoft-resx</resheader> | |
<resheader name="version">2.0</resheader> | |
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
<value>[base64 mime encoded serialized .NET Framework object]</value> | |
</data> | |
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
<comment>This is a comment</comment> | |
</data> | |
There are any number of "resheader" rows that contain simple | |
name/value pairs. | |
Each data row contains a name, and value. The row also contains a | |
type or mimetype. Type corresponds to a .NET class that support | |
text/value conversion through the TypeConverter architecture. | |
Classes that don't support this are serialized and stored with the | |
mimetype set. | |
The mimetype is used for serialized objects, and tells the | |
ResXResourceReader how to depersist the object. This is currently not | |
extensible. For a given mimetype the value must be set accordingly: | |
Note - application/x-microsoft.net.object.binary.base64 is the format | |
that the ResXResourceWriter will generate, however the reader can | |
read any of the formats listed below. | |
mimetype: application/x-microsoft.net.object.binary.base64 | |
value : The object must be serialized with | |
: System.Serialization.Formatters.Binary.BinaryFormatter | |
: and then encoded with base64 encoding. | |
mimetype: application/x-microsoft.net.object.soap.base64 | |
value : The object must be serialized with | |
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
: and then encoded with base64 encoding. | |
mimetype: application/x-microsoft.net.object.bytearray.base64 | |
value : The object must be serialized into a byte array | |
: using a System.ComponentModel.TypeConverter | |
: and then encoded with base64 encoding. | |
--> | |
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
<xsd:element name="root" msdata:IsDataSet="true"> | |
<xsd:complexType> | |
<xsd:choice maxOccurs="unbounded"> | |
<xsd:element name="metadata"> | |
<xsd:complexType> | |
<xsd:sequence> | |
<xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
</xsd:sequence> | |
<xsd:attribute name="name" type="xsd:string" /> | |
<xsd:attribute name="type" type="xsd:string" /> | |
<xsd:attribute name="mimetype" type="xsd:string" /> | |
</xsd:complexType> | |
</xsd:element> | |
<xsd:element name="assembly"> | |
<xsd:complexType> | |
<xsd:attribute name="alias" type="xsd:string" /> | |
<xsd:attribute name="name" type="xsd:string" /> | |
</xsd:complexType> | |
</xsd:element> | |
<xsd:element name="data"> | |
<xsd:complexType> | |
<xsd:sequence> | |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
</xsd:sequence> | |
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> | |
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
</xsd:complexType> | |
</xsd:element> | |
<xsd:element name="resheader"> | |
<xsd:complexType> | |
<xsd:sequence> | |
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
</xsd:sequence> | |
<xsd:attribute name="name" type="xsd:string" use="required" /> | |
</xsd:complexType> | |
</xsd:element> | |
</xsd:choice> | |
</xsd:complexType> | |
</xsd:element> | |
</xsd:schema> | |
<resheader name="resmimetype"> | |
<value>text/microsoft-resx</value> | |
</resheader> | |
<resheader name="version"> | |
<value>2.0</value> | |
</resheader> | |
<resheader name="reader"> | |
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
</resheader> | |
<resheader name="writer"> | |
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
</resheader> | |
</root> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------------------------------------------------------------------ | |
// <auto-generated> | |
// This code was generated by a tool. | |
// Runtime Version:4.0.30319.239 | |
// | |
// Changes to this file may cause incorrect behavior and will be lost if | |
// the code is regenerated. | |
// </auto-generated> | |
//------------------------------------------------------------------------------ | |
namespace DragAndDropWebFormApplication.Properties | |
{ | |
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] | |
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] | |
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase | |
{ | |
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); | |
public static Settings Default | |
{ | |
get | |
{ | |
return defaultInstance; | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='utf-8'?> | |
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)"> | |
<Profiles> | |
<Profile Name="(Default)" /> | |
</Profiles> | |
<Settings /> | |
</SettingsFile> |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<doc> | |
<assembly> | |
<name>System.Reactive</name> | |
</assembly> | |
<members> | |
<member name="T:System.IObservable`1"> | |
<summary> | |
Represents a push-style collection. | |
</summary> | |
</member> | |
<member name="M:System.IObservable`1.Subscribe(System.IObserver{`0})"> | |
<summary> | |
Subscribes an observer to the observable sequence. | |
</summary> | |
</member> | |
<member name="T:System.IObserver`1"> | |
<summary> | |
Supports push-style iteration over an observable sequence. | |
</summary> | |
</member> | |
<member name="M:System.IObserver`1.OnNext(`0)"> | |
<summary> | |
Notifies the observer of a new value in the sequence. | |
</summary> | |
</member> | |
<member name="M:System.IObserver`1.OnError(System.Exception)"> | |
<summary> | |
Notifies the observer that an exception has occurred. | |
</summary> | |
</member> | |
<member name="M:System.IObserver`1.OnCompleted"> | |
<summary> | |
Notifies the observer of the end of the sequence. | |
</summary> | |
</member> | |
<member name="T:System.Reactive.Disposables.SingleAssignmentDisposable"> | |
<summary> | |
A SingleAssignmentDisposable only allows a single assignment of its disposable object. If it has already been assigned, attempts to set the underlying object will throw an InvalidOperationException. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Disposables.SingleAssignmentDisposable.#ctor"> | |
<summary> | |
Initializes a new instance of the <see cref="T:System.Reactive.Disposables.SingleAssignmentDisposable"/> class. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Disposables.SingleAssignmentDisposable.Dispose"> | |
<summary> | |
Disposes the underlying disposable. | |
</summary> | |
</member> | |
<member name="P:System.Reactive.Disposables.SingleAssignmentDisposable.IsDisposed"> | |
<summary> | |
Gets a value that indicates whether the object is disposed. | |
</summary> | |
</member> | |
<member name="P:System.Reactive.Disposables.SingleAssignmentDisposable.Disposable"> | |
<summary> | |
Gets or sets the underlying disposable. | |
</summary> | |
<remarks>If the FutureDisposable has already been assigned then it will throw an InvalidOperationException.</remarks> | |
</member> | |
<member name="T:System.Reactive.Disposables.SerialDisposable"> | |
<summary> | |
Represents a disposable whose underlying disposable can be swapped for another disposable which causes the previous underlying disposable to be disposed. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Disposables.SerialDisposable.#ctor"> | |
<summary> | |
Initializes a new instance of the <see cref="T:System.Reactive.Disposables.SerialDisposable"/> class. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Disposables.SerialDisposable.Dispose"> | |
<summary> | |
Disposes the underlying disposable as well as all future replacements. | |
</summary> | |
</member> | |
<member name="P:System.Reactive.Disposables.SerialDisposable.IsDisposed"> | |
<summary> | |
Gets a value that indicates whether the object is disposed. | |
</summary> | |
</member> | |
<member name="P:System.Reactive.Disposables.SerialDisposable.Disposable"> | |
<summary> | |
Gets or sets the underlying disposable. | |
</summary> | |
<remarks>If the ReplaceDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object. Assigning this property disposes the previous disposable object.</remarks> | |
</member> | |
<member name="T:System.Reactive.EventPattern`1"> | |
<summary> | |
Represents the Sender and EventArg values of a .NET event. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.EventPattern`1.#ctor(System.Object,`0)"> | |
<summary> | |
Represents the Sender and EventArg values of a .NET event. | |
</summary> | |
<param name="sender">The source of the event.</param> | |
<param name="e">A TEventArgs that contains the event data.</param> | |
</member> | |
<member name="M:System.Reactive.EventPattern`1.Equals(System.Reactive.EventPattern{`0})"> | |
<summary> | |
Indicates whether the current object is equal to another object of the same type. | |
</summary> | |
<param name="other">An object to compare with this object.</param> | |
<returns>true if the current object is equal to the other parameter; otherwise, false.</returns> | |
</member> | |
<member name="M:System.Reactive.EventPattern`1.Equals(System.Object)"> | |
<summary> | |
Determines whether the specified System.Object is equal to the current EventPattern. | |
</summary> | |
<param name="obj">The System.Object to compare with the current EventPattern.</param> | |
<returns>true if the specified EventPattern is equal to the current System.Object; otherwise, false.</returns> | |
</member> | |
<member name="M:System.Reactive.EventPattern`1.GetHashCode"> | |
<summary> | |
Serves as a hash function for a particular type. | |
</summary> | |
<returns>A hash code for the current EventPattern.</returns> | |
</member> | |
<member name="M:System.Reactive.EventPattern`1.op_Equality(System.Reactive.EventPattern{`0},System.Reactive.EventPattern{`0})"> | |
<summary> | |
Determines whether two specified EventPatterns have the same value. | |
</summary> | |
<param name="first">The first EventPattern to compare, or null.</param> | |
<param name="second">The second EventPattern to compare, or null.</param> | |
<returns>true if the value of first is the same as the value of second; otherwise, false.</returns> | |
</member> | |
<member name="M:System.Reactive.EventPattern`1.op_Inequality(System.Reactive.EventPattern{`0},System.Reactive.EventPattern{`0})"> | |
<summary> | |
Determines whether two specified EventPatterns have different values. | |
</summary> | |
<param name="first">The first EventPattern to compare, or null.</param> | |
<param name="second">The second EventPattern to compare, or null.</param> | |
<returns>true if the value of first is different from the value of second; otherwise, false.</returns> | |
</member> | |
<member name="P:System.Reactive.EventPattern`1.Sender"> | |
<summary> | |
Gets the sender value of the event. | |
</summary> | |
</member> | |
<member name="P:System.Reactive.EventPattern`1.EventArgs"> | |
<summary> | |
Gets the event arguments value of the event. | |
</summary> | |
</member> | |
<member name="T:System.Reactive.IEventPatternSource`1"> | |
<summary> | |
Represents a data stream signaling its elements by means of an event. | |
</summary> | |
<typeparam name="TEventArgs">Event arguments type.</typeparam> | |
</member> | |
<member name="E:System.Reactive.IEventPatternSource`1.OnNext"> | |
<summary> | |
Event signaling the next element in the data stream. | |
</summary> | |
</member> | |
<member name="T:System.Reactive.IEventSource`1"> | |
<summary> | |
Represents a data stream signaling its elements by means of an event. | |
</summary> | |
<typeparam name="T">Event arguments type.</typeparam> | |
</member> | |
<member name="E:System.Reactive.IEventSource`1.OnNext"> | |
<summary> | |
Event signaling the next element in the data stream. | |
</summary> | |
</member> | |
<member name="T:System.Reactive.Linq.Observable"> | |
<summary> | |
Provides a set of static methods for query operations over observable sequences. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``1(System.Func{System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``0})"> | |
<summary> | |
Converts a Begin/End invoke function pair into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``2(System.Func{``0,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``1})"> | |
<summary> | |
Converts a Begin/End invoke function pair into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``3(System.Func{``0,``1,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``2})"> | |
<summary> | |
Converts a Begin/End invoke function pair into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Func{``0})"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Func{``0},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Func{``0,``1})"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Func{``0,``1},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Func{``0,``1,``2})"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Func{``0,``1,``2},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Func{``0,``1,``2,``3})"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Func{``0,``1,``2,``3},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``5(System.Func{``0,``1,``2,``3,``4})"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``5(System.Func{``0,``1,``2,``3,``4},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the function into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync(System.Action)"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync(System.Action,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Action{``0})"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Action{``0},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Action{``0,``1})"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Action{``0,``1},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Action{``0,``1,``2})"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Action{``0,``1,``2},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Action{``0,``1,``2,``3})"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Action{``0,``1,``2,``3},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Converts the action into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Start``1(System.Func{``0})"> | |
<summary> | |
Invokes the function asynchronously. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Start``1(System.Func{``0},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Invokes the function asynchronously. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Start(System.Action)"> | |
<summary> | |
Invokes the action asynchronously. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Start(System.Action,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Invokes the action asynchronously. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern(System.Func{System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})"> | |
<summary> | |
Converts a Begin/End invoke function pair into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``1(System.Func{``0,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})"> | |
<summary> | |
Converts a Begin/End invoke function pair into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``2(System.Func{``0,``1,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})"> | |
<summary> | |
Converts a Begin/End invoke function pair into an asynchronous function. | |
</summary> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Aggregate``2(System.IObservable{``0},``1,System.Func{``1,``0,``1})"> | |
<summary> | |
Applies an accumulator function over an observable sequence. The specified seed value is used as the initial accumulator value. | |
</summary> | |
<param name="source">An observable sequence to aggregate over.</param> | |
<param name="seed">The initial accumulator value.</param> | |
<param name="accumulator">An accumulator function to be invoked on each element.</param> | |
<returns>An observable sequence containing a single element with the final accumulator value.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Aggregate``1(System.IObservable{``0},System.Func{``0,``0,``0})"> | |
<summary> | |
Applies an accumulator function over an observable sequence. | |
</summary> | |
<param name="source">An observable sequence to aggregate over.</param> | |
<param name="accumulator">An accumulator function to be invoked on each element.</param> | |
<returns>An observable sequence containing a single element with the final accumulator value.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Any``1(System.IObservable{``0})"> | |
<summary> | |
Determines whether an observable sequence contains any elements. | |
</summary> | |
<param name="source">An observable sequence to check for non-emptiness.</param> | |
<returns>An observable sequence containing a single element determining whether the source sequence contains any elements.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Any``1(System.IObservable{``0},System.Func{``0,System.Boolean})"> | |
<summary> | |
Determines whether any element of an observable sequence satisfies a condition. | |
</summary> | |
<param name="source">An observable sequence whose elements to apply the predicate to.</param> | |
<param name="predicate">A function to test each element for a condition.</param> | |
<returns>An observable sequence containing a single element determining whether any elements in the source sequence pass the test in the specified predicate.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.All``1(System.IObservable{``0},System.Func{``0,System.Boolean})"> | |
<summary> | |
Determines whether all elements of an observable sequence satisfy a condition. | |
</summary> | |
<param name="source">An observable sequence whose elements to apply the predicate to.</param> | |
<param name="predicate">A function to test each element for a condition.</param> | |
<returns>An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Contains``1(System.IObservable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})"> | |
<summary> | |
Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer<T>. | |
</summary> | |
<param name="source">An observable sequence in which to locate a value.</param> | |
<param name="value">The value to locate in the sequence.</param> | |
<param name="comparer">An equality comparer to compare values.</param> | |
<returns>An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Contains``1(System.IObservable{``0},``0)"> | |
<summary> | |
Determines whether an observable sequence contains a specified element by using the default equality comparer. | |
</summary> | |
<param name="source">An observable sequence in which to locate a value.</param> | |
<param name="value">The value to locate in the sequence.</param> | |
<returns>An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Count``1(System.IObservable{``0})"> | |
<summary> | |
Returns a <see cref="T:System.Int32" /> that represents the total number of elements in an observable sequence. | |
</summary> | |
<param name="source">An observable sequence that contains elements to be counted.</param> | |
<returns>An observable sequence containing a single element with the number of elements in the input sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.LongCount``1(System.IObservable{``0})"> | |
<summary> | |
Returns a <see cref="T:System.Int64" /> that represents the total number of elements in an observable sequence. | |
</summary> | |
<param name="source">An observable sequence that contains elements to be counted.</param> | |
<returns>An observable sequence containing a single element with the number of elements in the input sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Double})"> | |
<summary> | |
Computes the sum of a sequence of <see cref="T:System.Double" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Double" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Single})"> | |
<summary> | |
Computes the sum of a sequence of <see cref="T:System.Single" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Single" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Decimal})"> | |
<summary> | |
Computes the sum of a sequence of <see cref="T:System.Decimal" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Decimal" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Int32})"> | |
<summary> | |
Computes the sum of a sequence of <see cref="T:System.Int32" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Int32" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Int64})"> | |
<summary> | |
Computes the sum of a sequence of <see cref="T:System.Int64" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Int64" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Double}})"> | |
<summary> | |
Computes the sum of a sequence of nullable <see cref="T:System.Double" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Double" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Single}})"> | |
<summary> | |
Computes the sum of a sequence of nullable <see cref="T:System.Single" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Single" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Decimal}})"> | |
<summary> | |
Computes the sum of a sequence of nullable <see cref="T:System.Decimal" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Int32}})"> | |
<summary> | |
Computes the sum of a sequence of nullable <see cref="T:System.Int32" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Int64}})"> | |
<summary> | |
Computes the sum of a sequence of nullable <see cref="T:System.Int64" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to calculate the sum of.</param> | |
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.MinBy``2(System.IObservable{``0},System.Func{``0,``1})"> | |
<summary> | |
Returns the elements in an observable sequence with the minimum key value. | |
</summary> | |
<param name="source">An observable sequence to get the minimum elements for.</param> | |
<param name="keySelector">Key selector function.</param> | |
<returns>An observable sequence containing a list of zero or more elements that have a minimum key value.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.MinBy``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})"> | |
<summary> | |
Returns the elements in an observable sequence with the minimum key value according to the specified comparer. | |
</summary> | |
<param name="source">An observable sequence to get the minimum elements for.</param> | |
<param name="keySelector">Key selector function.</param> | |
<param name="comparer">Comparer used to compare key values.</param> | |
<returns>An observable sequence containing a list of zero or more elements that have a minimum key value.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min``1(System.IObservable{``0})"> | |
<summary> | |
Returns the minimum element in an observable sequence. | |
</summary> | |
<param name="source">An observable sequence to determine the mimimum element of.</param> | |
<returns>An observable sequence containing a single element with the minimum element in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min``1(System.IObservable{``0},System.Collections.Generic.IComparer{``0})"> | |
<summary> | |
Returns the minimum element in an observable sequence according to the specified comparer. | |
</summary> | |
<param name="source">An observable sequence to determine the mimimum element of.</param> | |
<param name="comparer">Comparer used to compare elements.</param> | |
<returns>An observable sequence containing a single element with the minimum element in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Double})"> | |
<summary> | |
Returns the minimum value in an observable sequence of <see cref="T:System.Double" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Double" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Single})"> | |
<summary> | |
Returns the minimum value in an observable sequence of <see cref="T:System.Single" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Single" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Decimal})"> | |
<summary> | |
Returns the minimum value in an observable sequence of <see cref="T:System.Decimal" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Decimal" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Int32})"> | |
<summary> | |
Returns the minimum value in an observable sequence of <see cref="T:System.Int32" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Int32" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Int64})"> | |
<summary> | |
Returns the minimum value in an observable sequence of <see cref="T:System.Int64" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Int64" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Double}})"> | |
<summary> | |
Returns the minimum value in an observable sequence of nullable <see cref="T:System.Double" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Double" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Single}})"> | |
<summary> | |
Returns the minimum value in an observable sequence of nullable <see cref="T:System.Single" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Single" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Decimal}})"> | |
<summary> | |
Returns the minimum value in an observable sequence of nullable <see cref="T:System.Decimal" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Int32}})"> | |
<summary> | |
Returns the minimum value in an observable sequence of nullable <see cref="T:System.Int32" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Min(System.IObservable{System.Nullable{System.Int64}})"> | |
<summary> | |
Returns the minimum value in an observable sequence of nullable <see cref="T:System.Int64" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to determine the minimum value of.</param> | |
<returns>An observable sequence containing a single element with the minimum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.MaxBy``2(System.IObservable{``0},System.Func{``0,``1})"> | |
<summary> | |
Returns the elements in an observable sequence with the maximum key value. | |
</summary> | |
<param name="source">An observable sequence to get the maximum elements for.</param> | |
<param name="keySelector">Key selector function.</param> | |
<returns>An observable sequence containing a list of zero or more elements that have a maximum key value.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.MaxBy``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IComparer{``1})"> | |
<summary> | |
Returns the elements in an observable sequence with the maximum key value according to the specified comparer. | |
</summary> | |
<param name="source">An observable sequence to get the maximum elements for.</param> | |
<param name="keySelector">Key selector function.</param> | |
<param name="comparer">Comparer used to compare key values.</param> | |
<returns>An observable sequence containing a list of zero or more elements that have a maximum key value.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max``1(System.IObservable{``0})"> | |
<summary> | |
Returns the maximum element in an observable sequence. | |
</summary> | |
<param name="source">An observable sequence to determine the maximum element of.</param> | |
<returns>An observable sequence containing a single element with the maximum element in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max``1(System.IObservable{``0},System.Collections.Generic.IComparer{``0})"> | |
<summary> | |
Returns the maximum value in an observable sequence according to the specified comparer. | |
</summary> | |
<param name="source">An observable sequence to determine the maximum element of.</param> | |
<param name="comparer">Comparer used to compare elements.</param> | |
<returns>An observable sequence containing a single element with the maximum element in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Double})"> | |
<summary> | |
Returns the maximum value in an observable sequence of <see cref="T:System.Double" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Double" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Single})"> | |
<summary> | |
Returns the maximum value in an observable sequence of <see cref="T:System.Single" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Single" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Decimal})"> | |
<summary> | |
Returns the maximum value in an observable sequence of <see cref="T:System.Decimal" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Decimal" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Int32})"> | |
<summary> | |
Returns the maximum value in an observable sequence of <see cref="T:System.Int32" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Int32" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Int64})"> | |
<summary> | |
Returns the maximum value in an observable sequence of <see cref="T:System.Int64" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Int64" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Double}})"> | |
<summary> | |
Returns the maximum value in an observable sequence of nullable <see cref="T:System.Double" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Double" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Single}})"> | |
<summary> | |
Returns the maximum value in an observable sequence of nullable <see cref="T:System.Single" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Single" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Decimal}})"> | |
<summary> | |
Returns the maximum value in an observable sequence of nullable <see cref="T:System.Decimal" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Int32}})"> | |
<summary> | |
Returns the maximum value in an observable sequence of nullable <see cref="T:System.Int32" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Max(System.IObservable{System.Nullable{System.Int64}})"> | |
<summary> | |
Returns the maximum value in an observable sequence of nullable <see cref="T:System.Int64" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to determine the maximum value of.</param> | |
<returns>An observable sequence containing a single element with the maximum value in the sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Double})"> | |
<summary> | |
Computes the average of an observable sequence of <see cref="T:System.Double" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Double" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Single})"> | |
<summary> | |
Computes the average of an observable sequence of <see cref="T:System.Single" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Single" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Decimal})"> | |
<summary> | |
Computes the average of an observable sequence of <see cref="T:System.Decimal" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Decimal" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Int32})"> | |
<summary> | |
Computes the average of an observable sequence of <see cref="T:System.Int32" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Int32" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Int64})"> | |
<summary> | |
Computes the average of an observable sequence of <see cref="T:System.Int64" /> values. | |
</summary> | |
<param name="source">A sequence of <see cref="T:System.Int64" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Double}})"> | |
<summary> | |
Computes the average of an observable sequence of nullable <see cref="T:System.Double" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Double" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Single}})"> | |
<summary> | |
Computes the average of an observable sequence of nullable <see cref="T:System.Single" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Single" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Decimal}})"> | |
<summary> | |
Computes the average of an observable sequence of nullable <see cref="T:System.Decimal" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Decimal" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Int32}})"> | |
<summary> | |
Computes the average of an observable sequence of nullable <see cref="T:System.Int32" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Int32" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Average(System.IObservable{System.Nullable{System.Int64}})"> | |
<summary> | |
Computes the average of an observable sequence of nullable <see cref="T:System.Int64" /> values. | |
</summary> | |
<param name="source">A sequence of nullable <see cref="T:System.Int64" /> values to calculate the average of.</param> | |
<returns>An observable sequence containing a single element with the average of the sequence of values, or null if the source sequence is empty or contains only values that are null.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToList``1(System.IObservable{``0})"> | |
<summary> | |
Creates a list from an observable sequence. | |
</summary> | |
<param name="source">The source observable sequence to get a list of elements for.</param> | |
<returns>An observable sequence containing a single element with a list containing all the elements of the source sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToArray``1(System.IObservable{``0})"> | |
<summary> | |
Creates an array from an observable sequence. | |
</summary> | |
<param name="source">The source observable sequence to get an array of elements for.</param> | |
<returns>An observable sequence containing a single element with an array containing all the elements of the source sequence.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToDictionary``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})"> | |
<summary> | |
Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function. | |
</summary> | |
<param name="source">An observable sequence to create a dictionary for.</param> | |
<param name="keySelector">A function to extract a key from each element.</param> | |
<param name="elementSelector">A transform function to produce a result element value from each element.</param> | |
<param name="comparer">An equality comparer to compare keys.</param> | |
<returns>An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToDictionary``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2})"> | |
<summary> | |
Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function. | |
</summary> | |
<param name="source">An observable sequence to create a dictionary for.</param> | |
<param name="keySelector">A function to extract a key from each element.</param> | |
<param name="elementSelector">A transform function to produce a result element value from each element.</param> | |
<returns>An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToDictionary``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})"> | |
<summary> | |
Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer. | |
</summary> | |
<param name="source">An observable sequence to create a dictionary for.</param> | |
<param name="keySelector">A function to extract a key from each element.</param> | |
<param name="comparer">An equality comparer to compare keys.</param> | |
<returns>An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToDictionary``2(System.IObservable{``0},System.Func{``0,``1})"> | |
<summary> | |
Creates a dictionary from an observable sequence according to a specified key selector function. | |
</summary> | |
<param name="source">An observable sequence to create a dictionary for.</param> | |
<param name="keySelector">A function to extract a key from each element.</param> | |
<returns>An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToLookup``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Collections.Generic.IEqualityComparer{``1})"> | |
<summary> | |
Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function. | |
</summary> | |
<param name="source">An observable sequence to create a lookup for.</param> | |
<param name="keySelector">A function to extract a key from each element.</param> | |
<param name="elementSelector">A transform function to produce a result element value from each element.</param> | |
<param name="comparer">An equality comparer to compare keys.</param> | |
<returns>An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToLookup``2(System.IObservable{``0},System.Func{``0,``1},System.Collections.Generic.IEqualityComparer{``1})"> | |
<summary> | |
Creates a lookup from an observable sequence according to a specified key selector function, and a comparer. | |
</summary> | |
<param name="source">An observable sequence to create a lookup for.</param> | |
<param name="keySelector">A function to extract a key from each element.</param> | |
<param name="comparer">An equality comparer to compare keys.</param> | |
<returns>An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToLookup``3(System.IObservable{``0},System.Func{``0,``1},System.Func{``0,``2})"> | |
<summary> | |
Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function. | |
</summary> | |
<param name="source">An observable sequence to create a lookup for.</param> | |
<param name="keySelector">A function to extract a key from each element.</param> | |
<param name="elementSelector">A transform function to produce a result element value from each element.</param> | |
<returns>An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToLookup``2(System.IObservable{``0},System.Func{``0,``1})"> | |
<summary> | |
Creates a lookup from an observable sequence according to a specified key selector function. | |
</summary> | |
<param name="source">An observable sequence to create a lookup for.</param> | |
<param name="keySelector">A function to extract a key from each element.</param> | |
<returns>An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.SequenceEqual``1(System.IObservable{``0},System.IObservable{``0},System.Collections.Generic.IEqualityComparer{``0})"> | |
<summary> | |
Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer. | |
</summary> | |
<param name="first">First observable sequence to compare.</param> | |
<param name="second">Second observable sequence to compare.</param> | |
<param name="comparer">Comparer used to compare elements of both sequences.</param> | |
<returns>An observable sequence that contains a single element which indicates whether both sequences are equal.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.SequenceEqual``1(System.IObservable{``0},System.IObservable{``0})"> | |
<summary> | |
Determines whether two sequences are equal by comparing the elements pairwise. | |
</summary> | |
<param name="first">First observable sequence to compare.</param> | |
<param name="second">Second observable sequence to compare.</param> | |
<returns>An observable sequence that contains a single element which indicates whether both sequences are equal.</returns> | |
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.RefCount``1(System.Reactive.Subjects.IConnectableObservable{``0})"> | |
<summary> | |
Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence. | |
</summary> | |
<param name="source">Connectable observable sequence.</param> | |
<returns>An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Multicast``2(System.IObservable{``0},System.Reactive.Subjects.ISubject{``0,``1})"> | |
<summary> | |
Returns a connectable observable sequence that upon connection causes the source sequence to push results into the specified subject. | |
</summary> | |
<param name="source">Source sequence whose elements will be pushed into the specified subject.</param> | |
<param name="subject">Subject to push source elements into.</param> | |
<returns>A connectable observable sequence that upon connection causes the source sequence to push results into the specified subject.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Multicast``3(System.IObservable{``0},System.Func{System.Reactive.Subjects.ISubject{``0,``1}},System.Func{System.IObservable{``1},System.IObservable{``2}})"> | |
<summary> | |
Returns an observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. | |
</summary> | |
<param name="source">Source sequence which will be multicasted in the specified selector function.</param> | |
<param name="subjectSelector">Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence subject to the policies enforced by the created subject.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Publish``1(System.IObservable{``0})"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all notifications of the source from the time of the subscription on.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Publish``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}})"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.PublishLast``1(System.IObservable{``0})"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will only receive the last notification of the source.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.PublishLast``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}})"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will only receive the last notification of the source.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0})"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all the notifications of the source.</remarks> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="scheduler">Scheduler where connected observers will be invoked on.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all the notifications of the source.</remarks> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}})"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param> | |
<param name="scheduler">Scheduler where connected observers within the selector function will be invoked on.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.TimeSpan)"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="window">Maximum time length of the replay buffer.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all the notifications of the source.</remarks> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.TimeSpan)"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param> | |
<param name="window">Maximum time length of the replay buffer.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.TimeSpan,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="window">Maximum time length of the replay buffer.</param> | |
<param name="scheduler">Scheduler where connected observers will be invoked on.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all the notifications of the source.</remarks> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.TimeSpan,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications within window. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param> | |
<param name="window">Maximum time length of the replay buffer.</param> | |
<param name="scheduler">Scheduler where connected observers within the selector function will be invoked on.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Int32,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="bufferSize">Maximum element count of the replay buffer.</param> | |
<param name="scheduler">Scheduler where connected observers will be invoked on.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all the notifications of the source.</remarks> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Int32,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param> | |
<param name="bufferSize">Maximum element count of the replay buffer.</param> | |
<param name="scheduler">Scheduler where connected observers within the selector function will be invoked on.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Int32)"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="bufferSize">Maximum element count of the replay buffer.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all the notifications of the source.</remarks> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Int32)"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param> | |
<param name="bufferSize">Maximum element count of the replay buffer.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Int32,System.TimeSpan)"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="bufferSize">Maximum element count of the replay buffer.</param> | |
<param name="window">Maximum time length of the replay buffer.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all the notifications of the source.</remarks> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Int32,System.TimeSpan)"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param> | |
<param name="bufferSize">Maximum element count of the replay buffer.</param> | |
<param name="window">Maximum time length of the replay buffer.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``1(System.IObservable{``0},System.Int32,System.TimeSpan,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="bufferSize">Maximum element count of the replay buffer.</param> | |
<param name="window">Maximum time length of the replay buffer.</param> | |
<param name="scheduler">Scheduler where connected observers will be invoked on.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive all the notifications of the source.</remarks> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Replay``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},System.Int32,System.TimeSpan,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications within window. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasting through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive all the notifications of the source.</param> | |
<param name="bufferSize">Maximum element count of the replay buffer.</param> | |
<param name="window">Maximum time length of the replay buffer.</param> | |
<param name="scheduler">Scheduler where connected observers within the selector function will be invoked on.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.ReplaySubject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Publish``1(System.IObservable{``0},``0)"> | |
<summary> | |
Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="initialValue">Initial value received by observers upon subscription.</param> | |
<returns>A connectable observable sequence that shares a single subscription to the underlying sequence.</returns> | |
<remarks>Subscribers will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Publish``2(System.IObservable{``0},System.Func{System.IObservable{``0},System.IObservable{``1}},``0)"> | |
<summary> | |
Returns an observable sequence that is the result of invoking the selector on a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. | |
</summary> | |
<param name="source">Source sequence whose elements will be multicasted through a single shared subscription.</param> | |
<param name="selector">Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on.</param> | |
<param name="initialValue">Initial value received by observers upon subscription.</param> | |
<returns>An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function.</returns> | |
<seealso cref="T:System.Reactive.Subjects.Subject"/> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToEnumerable``1(System.IObservable{``0})"> | |
<summary> | |
Converts an observable sequence to an enumerable sequence. | |
</summary> | |
<param name="source">An observable sequence to convert to an enumerable sequence.</param> | |
<returns>The enumerable sequence containing the elements in the observable sequence.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.GetEnumerator``1(System.IObservable{``0})"> | |
<summary> | |
Returns an enumerator that enumerates all values of the observable sequence. | |
</summary> | |
<param name="source">An observable sequence to get an enumerator for.</param> | |
<returns>The enumerator that can be used to enumerate over the elements in the observable sequence.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.MostRecent``1(System.IObservable{``0},``0)"> | |
<summary> | |
Samples the most recent value in an observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<param name="initialValue">Initial value that will be yielded by the enumerable sequence if no element has been sampled yet.</param> | |
<returns>The enumerable sequence that returns the last sampled element upon each iteration.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Next``1(System.IObservable{``0})"> | |
<summary> | |
Samples the next value (blocking without buffering) from in an observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<returns>The enumerable sequence that blocks upon each iteration until the next element in the observable source sequence becomes available.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Latest``1(System.IObservable{``0})"> | |
<summary> | |
Samples the most recent value in an observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<returns>The enumerable sequence that returns the last sampled element upon each iteration and subsequently blocks until the next element in the observable source sequence becomes available.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.First``1(System.IObservable{``0})"> | |
<summary> | |
Returns the first element of an observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<returns>The first element in the observable sequence.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FirstOrDefault``1(System.IObservable{``0})"> | |
<summary> | |
Returns the first element of an observable sequence, or a default value if no value is found. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<returns>The first element in the observable sequence, or a default value if no value is found.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.First``1(System.IObservable{``0},System.Func{``0,System.Boolean})"> | |
<summary> | |
Returns the first element of an observable sequence that matches the predicate. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<param name="predicate">A predicate function to evaluate for elements in the sequence.</param> | |
<returns>The first element in the observable sequence for which the predicate holds.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FirstOrDefault``1(System.IObservable{``0},System.Func{``0,System.Boolean})"> | |
<summary> | |
Returns the first element of an observable sequence that matches the predicate, or a default value if no value is found. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<param name="predicate">A predicate function to evaluate for elements in the sequence.</param> | |
<returns>The first element in the observable sequence for which the predicate holds, or a default value if no value is found.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Last``1(System.IObservable{``0})"> | |
<summary> | |
Returns the last element of an observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<returns>The last element in the observable sequence.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.LastOrDefault``1(System.IObservable{``0})"> | |
<summary> | |
Returns the last element of an observable sequence, or a default value if no value is found. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<returns>The last element in the observable sequence, or a default value if no value is found.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Last``1(System.IObservable{``0},System.Func{``0,System.Boolean})"> | |
<summary> | |
Returns the last element of an observable sequence that matches the predicate. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<param name="predicate">A predicate function to evaluate for elements in the sequence.</param> | |
<returns>The last element in the observable sequence for which the predicate holds.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.LastOrDefault``1(System.IObservable{``0},System.Func{``0,System.Boolean})"> | |
<summary> | |
Returns the last element of an observable sequence that matches the predicate, or a default value if no value is found. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<param name="predicate">A predicate function to evaluate for elements in the sequence.</param> | |
<returns>The last element in the observable sequence, or a default value if no value is found.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Single``1(System.IObservable{``0})"> | |
<summary> | |
Returns the only element of an observable sequence and throws an exception if there is not exactly one element in the observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<returns>The single element in the observable sequence.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.SingleOrDefault``1(System.IObservable{``0})"> | |
<summary> | |
Returns the only element of an observable sequence, or a default value if the observable sequence is empty; this method throws an exception if there is more than one element in the observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<returns>The single element in the observable sequence, or a default value if no value is found.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Single``1(System.IObservable{``0},System.Func{``0,System.Boolean})"> | |
<summary> | |
Returns the only element of an observable sequence that matches the predicate and throws an exception if there is not exactly one element in the observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<param name="predicate">A predicate function to evaluate for elements in the sequence.</param> | |
<returns>The single element in the observable sequence.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.SingleOrDefault``1(System.IObservable{``0},System.Func{``0,System.Boolean})"> | |
<summary> | |
Returns the only element of an observable sequence that matches the predicate, or a default value if no value is found; this method throws an exception if there is more than one element in the observable sequence. | |
</summary> | |
<param name="source">Source observable sequence.</param> | |
<param name="predicate">A predicate function to evaluate for elements in the sequence.</param> | |
<returns>The single element in the observable sequence, or a default value if no value is found.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ForEach``1(System.IObservable{``0},System.Action{``0})"> | |
<summary> | |
Invokes an action for each element in the observable sequence, and blocks until the sequence is terminated. | |
</summary> | |
<param name="source">Source sequence.</param> | |
<param name="onNext">Action to invoke for each element in the observable sequence.</param> | |
<remarks>Because of its blocking nature, this operator is mainly used for testing.</remarks> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ObserveOn``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Asynchronously notify observers on the specified scheduler. | |
</summary> | |
<param name="source">Source sequence.</param> | |
<param name="scheduler">Scheduler to notify observers on.</param> | |
<returns>The source sequence whose observations happen on the specified scheduler.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.SubscribeOn``1(System.IObservable{``0},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Asynchronously subscribes and unsubscribes observers on the specified scheduler. | |
</summary> | |
<param name="source">Source sequence.</param> | |
<param name="scheduler">Scheduler to perform subscription and unsubscription actions on.</param> | |
<returns>The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.SubscribeOn``1(System.IObservable{``0},System.Threading.SynchronizationContext)"> | |
<summary> | |
Asynchronously subscribes and unsubscribes observers on the specified synchronization context. | |
</summary> | |
<param name="source">Source sequence.</param> | |
<param name="context">Synchronization context to perform subscription and unsubscription actions on.</param> | |
<returns>The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ObserveOn``1(System.IObservable{``0},System.Threading.SynchronizationContext)"> | |
<summary> | |
Asynchronously notify observers on the specified synchronization context. | |
</summary> | |
<param name="source">Source sequence.</param> | |
<param name="context">Synchronization context to notify observers on.</param> | |
<returns>The source sequence whose observations happen on the specified synchronization context.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Synchronize``1(System.IObservable{``0})"> | |
<summary> | |
Synchronizes the observable sequence. | |
</summary> | |
<param name="source">Source sequence.</param> | |
<returns>The source sequence whose outgoing calls to observers are synchronized.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Synchronize``1(System.IObservable{``0},System.Object)"> | |
<summary> | |
Synchronizes the observable sequence. | |
</summary> | |
<param name="source">Source sequence.</param> | |
<param name="gate">Gate object to synchronize each observer call on.</param> | |
<returns>The source sequence whose outgoing calls to observers are synchronized on the given gate object.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"> | |
<summary> | |
Exposes an observable sequence as an object with a .NET event. | |
</summary> | |
<param name="source">Observable source sequence.</param> | |
<returns>The event source object.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToEvent``1(System.IObservable{``0})"> | |
<summary> | |
Exposes an observable sequence as an object with a .NET event. | |
</summary> | |
<param name="source">Observable source sequence.</param> | |
<returns>The event source object.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"> | |
<summary> | |
Exposes an observable sequence as an object with a .NET event. | |
</summary> | |
<param name="source">Observable source sequence.</param> | |
<returns>The event source object.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Never``1"> | |
<summary> | |
Returns a non-terminating observable sequence. | |
</summary> | |
<returns>Observable sequence whose observers will never get called.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Empty``1"> | |
<summary> | |
Returns an empty observable sequence. | |
</summary> | |
<returns>Observable sequence with no elements.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Empty``1(System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns an empty observable sequence. | |
</summary> | |
<param name="scheduler">Scheduler to send the termination call on.</param> | |
<returns>Observable sequence with no elements.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Return``1(``0)"> | |
<summary> | |
Returns an observable sequence that contains a single element. | |
</summary> | |
<param name="value">Single element in the resulting observable sequence.</param> | |
<returns>Observable sequence containing the single specified element.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Return``1(``0,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns an observable sequence that contains a single value. | |
</summary> | |
<param name="value">Single element in the resulting observable sequence.</param> | |
<param name="scheduler">Scheduler to send the single element on.</param> | |
<returns>Observable sequence containing the single specified element.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Throw``1(System.Exception)"> | |
<summary> | |
Returns an observable sequence that terminates with an exception. | |
</summary> | |
<param name="exception">Exception object used for the sequence's termination.</param> | |
<returns>The observable sequence that terminates exceptionally with the specified exception object.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Throw``1(System.Exception,System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Returns an observable sequence that terminates with an exception. | |
</summary> | |
<param name="exception">Exception object used for the sequence's termination.</param> | |
<param name="scheduler">Scheduler to send the exceptional termination call on.</param> | |
<returns>The observable sequence that terminates exceptionally with the specified exception object.</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Subscribe``1(System.Collections.Generic.IEnumerable{``0},System.IObserver{``0})"> | |
<summary> | |
Subscribes an observer to an enumerable sequence. | |
</summary> | |
<param name="source">Enumerable sequence to subscribe to.</param> | |
<param name="observer">Observer that will receive notifications from the enumerable sequence.</param> | |
<returns>Disposable object that can be used to unsubscribe the observer from the enumerable</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.Subscribe``1(System.Collections.Generic.IEnumerable{``0},System.IObserver{``0},System.Reactive.Concurrency.IScheduler)"> | |
<summary> | |
Subscribes an observer to an enumerable sequence. | |
</summary> | |
<param name="source">Enumerable sequence to subscribe to.</param> | |
<param name="observer">Observer that will receive notifications from the enumerable sequence.</param> | |
<param name="scheduler">Scheduler to perform the enumeration on.</param> | |
<returns>Disposable object that can be used to unsubscribe the observer from the enumerable</returns> | |
</member> | |
<member name="M:System.Reactive.Linq.Observable.FromEventPattern(System.Action{System.EventHandler},System.Action{System.EventHandler})"> | |
<summary> | |
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence. | |
</summary> | |
<param name="addHandler">Action that attaches the given event handler to the under |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment