diff --git a/.gitignore b/.gitignore index a51f486..b8e5f64 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,9 @@ _UpgradeReport_Files /Source/*.nupkg /Source/*.zip /Source/Tx.LinqPad.lpx +*.dtbcache +*.lock +*.ide +*.ide-shm +*.ide-wal +Packages/ diff --git a/Common.targets b/Common.targets index d5eace0..d757c0d 100644 --- a/Common.targets +++ b/Common.targets @@ -14,21 +14,21 @@ *********************** --> - + Debug - 45 + 46 1591 - + Release - 45 + 46 1591 - + $(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_EDI;HAS_WINRT;HAS_PROGRESS;PREFER_ASYNC;HAS_AWAIT;HAS_APTCA; HAS_DISPATCHER_PRIORITY;HAS_WINFORMS - v4.5 + v4.6 DESKTOPCLR DESKTOPCLR45 diff --git a/References/DESKTOPCLR45/Microsoft.Diagnostics.Tracing.EventSource.dll b/References/DESKTOPCLR45/Microsoft.Diagnostics.Tracing.EventSource.dll deleted file mode 100644 index 6f6ef91..0000000 Binary files a/References/DESKTOPCLR45/Microsoft.Diagnostics.Tracing.EventSource.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/Microsoft.Reactive.Testing.XML b/References/DESKTOPCLR45/Microsoft.Reactive.Testing.XML deleted file mode 100644 index 35f30d2..0000000 --- a/References/DESKTOPCLR45/Microsoft.Reactive.Testing.XML +++ /dev/null @@ -1,494 +0,0 @@ - - - - Microsoft.Reactive.Testing - - - - - Observable sequence that records subscription lifetimes and timestamped notification messages sent to observers. - - The type of the elements in the sequence. - - - - Gets a list of all the subscriptions to the observable sequence, including their lifetimes. - - - - - Gets the recorded timestamped notification messages that were sent by the observable sequence to its observers. - - - - - Observer that records received notification messages and timestamps those. - - The type of the elements in the sequence. - - - - Gets recorded timestamped notification messages received by the observer. - - - - - The Microsoft.Reactive.Testing namespace contains interfaces and classes providing functionality to test applications and libraries built using Reactive Extensions. - - - - - Helper class to write asserts in unit tests for applications and libraries built using Reactive Extensions. - - - - - Asserts that both enumerable sequences have equal length and equal elements. - - The type of the elements in the sequence. - Expected sequence. - Actual sequence to compare against the expected one. - or is null. - - - - Asserts that both enumerable sequences have equal length and equal elements. - - The type of the elements in the sequence. - Expected sequence. - Actual sequence to compare against the expected one. - Error message for assert failure. - or is null. - - - - Asserts that both observable sequences have equal length and equal notifications. - - The type of the elements in the sequence. - Expected sequence. - Actual sequence to compare against the expected one. - or is null. - - - - Asserts that both observable sequences have equal length and equal elements. - - The type of the elements in the sequence. - Expected sequence. - Actual sequence to compare against the expected one. - Error message for assert failure. - or is null. - - - - Asserts that the given action throws an exception of the type specified in the generic parameter, or a subtype thereof. - - Type of the exception to check for. - Action to run. - is null. - - - - Asserts that the given action throws an exception of the type specified in the generic parameter, or a subtype thereof. - - Type of the exception to check for. - Action to run. - Error message for assert failure. - is null. - - - - Asserts that the given action throws the specified exception. - - Type of the exception to check for. - Exception to assert being thrown. - Action to run. - is null. - - - - Asserts that the given action throws the specified exception. - - Type of the exception to check for. - Exception to assert being thrown. - Action to run. - Error message for assert failure. - is null. - - - - Asserts that both enumerable sequences have equal length and equal elements. - - The type of the elements in the sequence. - Actual sequence to compare against the expected one. - Expected sequence. - or is null. - - - - Asserts the enumerable sequence has the expected elements. - - The type of the elements in the sequence. - Actual sequence to compare against the expected elements. - Expected elements. - or is null. - - - - Asserts that both observable sequences have equal length and equal notifications. - - The type of the elements in the sequence. - Actual sequence to compare against the expected one. - Expected sequence. - or is null. - - - - Base class to write unit tests for applications and libraries built using Reactive Extensions. - - - - - Default virtual time used for creation of observable sequences in -based unit tests. - - - - - Default virtual time used to subscribe to observable sequences in -based unit tests. - - - - - Default virtual time used to dispose subscriptions in -based unit tests. - - - - - Factory method for an OnNext notification record at a given time with a given value. - - The element type for the resulting notification object. - Recorded virtual time the OnNext notification occurs. - Recorded value stored in the OnNext notification. - Recorded OnNext notification. - - - - Factory method for writing an assert that checks for an OnNext notification record at a given time, using the specified predicate to check the value. - - The element type for the resulting notification object. - Recorded virtual time the OnNext notification occurs. - Predicate function to check the OnNext notification value against an expected value. - Recorded OnNext notification with a predicate to assert a given value. - is null. - - - - Factory method for an OnCompleted notification record at a given time. - - The element type for the resulting notification object. - Recorded virtual time the OnCompleted notification occurs. - Recorded OnCompleted notification. - - - - Factory method for an OnCompleted notification record at a given time, using inference to determine the type of . - - The element type for the resulting notification object. - Recorded virtual time the OnCompleted notification occurs. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - Recorded OnCompleted notification. - - - - Factory method for an OnError notification record at a given time with a given error. - - The element type for the resulting notification object. - Recorded virtual time the OnError notification occurs. - Recorded exception stored in the OnError notification. - Recorded OnError notification. - is null. - - - - Factory method for writing an assert that checks for an OnError notification record at a given time, using the specified predicate to check the exception. - - The element type for the resulting notification object. - Recorded virtual time the OnError notification occurs. - Predicate function to check the OnError notification value against an expected exception. - Recorded OnError notification with a predicate to assert a given exception. - is null. - - - - Factory method for an OnError notification record at a given time with a given error, using inference to determine the type of . - - The element type for the resulting notification object. - Recorded virtual time the OnError notification occurs. - Recorded exception stored in the OnError notification. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - Recorded OnError notification. - is null. - - - - Factory method for writing an assert that checks for an OnError notification record at a given time, using the specified predicate to check the exception and inference to determine the type of . - - The element type for the resulting notification object. - Recorded virtual time the OnError notification occurs. - Predicate function to check the OnError notification value against an expected exception. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - Recorded OnError notification with a predicate to assert a given exception. - is null. - - - - Factory method for a subscription record based on a given subscription and disposal time. - - Virtual time indicating when the subscription was created. - Virtual time indicating when the subscription was disposed. - Subscription object. - - - - Factory method for a subscription record based on a given subscription time. - - Virtual time indicating when the subscription was created. - Subscription object. - - - - Record of a value including the virtual time it was produced on. - - Type of the value. - - - - Gets the virtual time the value was produced on. - - - - - Gets the recorded value. - - - - - Creates a new object recording the production of the specified value at the given virtual time. - - Virtual time the value was produced on. - Value that was produced. - - - - Checks whether the given recorded object is equal to the current instance. - - Recorded object to check for equality. - true if both objects are equal; false otherwise. - - - - Determines whether the two specified Recorded<T> values have the same Time and Value. - - The first Recorded<T> value to compare. - The second Recorded<T> value to compare. - true if the first Recorded<T> value has the same Time and Value as the second Recorded<T> value; otherwise, false. - - - - Determines whether the two specified Recorded<T> values don't have the same Time and Value. - - The first Recorded<T> value to compare. - The second Recorded<T> value to compare. - true if the first Recorded<T> value has a different Time or Value as the second Recorded<T> value; otherwise, false. - - - - Determines whether the specified System.Object is equal to the current Recorded<T> value. - - The System.Object to compare with the current Recorded<T> value. - true if the specified System.Object is equal to the current Recorded<T> value; otherwise, false. - - - - Returns the hash code for the current Recorded<T> value. - - A hash code for the current Recorded<T> value. - - - - Returns a string representation of the current Recorded<T> value. - - String representation of the current Recorded<T> value. - - - - Records information about subscriptions to and unsubscriptions from observable sequences. - - - - - Infinite virtual time value, used to indicate an unsubscription never took place. - - - - - Gets the subscription virtual time. - - - - - Gets the unsubscription virtual time. - - - - - Creates a new subscription object with the given virtual subscription time. - - Virtual time at which the subscription occurred.- - - - - Creates a new subscription object with the given virtual subscription and unsubscription time. - - Virtual time at which the subscription occurred. - Virtual time at which the unsubscription occurred. - - - - Checks whether the given subscription is equal to the current instance. - - Subscription object to check for equality. - true if both objects are equal; false otherwise. - - - - Determines whether the two specified Subscription values have the same Subscribe and Unsubscribe. - - The first Subscription value to compare. - The second Subscription value to compare. - true if the first Subscription value has the same Subscribe and Unsubscribe as the second Subscription value; otherwise, false. - - - - Determines whether the two specified Subscription values don't have the same Subscribe and Unsubscribe. - - The first Subscription value to compare. - The second Subscription value to compare. - true if the first Subscription value has a different Subscribe or Unsubscribe as the second Subscription value; otherwise, false. - - - - Determines whether the specified System.Object is equal to the current Subscription value. - - The System.Object to compare with the current Subscription value. - true if the specified System.Object is equal to the current Subscription value; otherwise, false. - - - - Returns the hash code for the current Subscription value. - - A hash code for the current Subscription value. - - - - Returns a string representation of the current Subscription value. - - String representation of the current Subscription value. - - - - Virtual time scheduler used for testing applications and libraries built using Reactive Extensions. - - - - - Schedules an action to be executed at the specified virtual time. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute virtual time at which to execute the action. - Disposable object used to cancel the scheduled action (best effort). - is null. - - - - Adds a relative virtual time to an absolute virtual time value. - - Absolute virtual time value. - Relative virtual time value to add. - Resulting absolute virtual time sum value. - - - - Converts the absolute virtual time value to a DateTimeOffset value. - - Absolute virtual time value to convert. - Corresponding DateTimeOffset value. - - - - Converts the TimeSpan value to a relative virtual time value. - - TimeSpan value to convert. - Corresponding relative virtual time value. - - - - Starts the test scheduler and uses the specified virtual times to invoke the factory function, subscribe to the resulting sequence, and dispose the subscription. - - The element type of the observable sequence being tested. - Factory method to create an observable sequence. - Virtual time at which to invoke the factory to create an observable sequence. - Virtual time at which to subscribe to the created observable sequence. - Virtual time at which to dispose the subscription. - Observer with timestamped recordings of notification messages that were received during the virtual time window when the subscription to the source sequence was active. - is null. - - - - Starts the test scheduler and uses the specified virtual time to dispose the subscription to the sequence obtained through the factory function. - Default virtual times are used for factory invocation and sequence subscription. - - The element type of the observable sequence being tested. - Factory method to create an observable sequence. - Virtual time at which to dispose the subscription. - Observer with timestamped recordings of notification messages that were received during the virtual time window when the subscription to the source sequence was active. - is null. - - - - Starts the test scheduler and uses default virtual times to invoke the factory function, to subscribe to the resulting sequence, and to dispose the subscription. - - The element type of the observable sequence being tested. - Factory method to create an observable sequence. - Observer with timestamped recordings of notification messages that were received during the virtual time window when the subscription to the source sequence was active. - is null. - - - - Creates a hot observable using the specified timestamped notification messages. - - The element type of the observable sequence being created. - Notifications to surface through the created sequence at their specified absolute virtual times. - Hot observable sequence that can be used to assert the timing of subscriptions and notifications. - is null. - - - - Creates a cold observable using the specified timestamped notification messages. - - The element type of the observable sequence being created. - Notifications to surface through the created sequence at their specified virtual time offsets from the sequence subscription time. - Cold observable sequence that can be used to assert the timing of subscriptions and notifications. - is null. - - - - Creates an observer that records received notification messages and timestamps those. - - The element type of the observer being created. - Observer that can be used to assert the timing of received notifications. - - - diff --git a/References/DESKTOPCLR45/Microsoft.Reactive.Testing.dll b/References/DESKTOPCLR45/Microsoft.Reactive.Testing.dll deleted file mode 100644 index 70787ce..0000000 Binary files a/References/DESKTOPCLR45/Microsoft.Reactive.Testing.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/Newtonsoft.Json.dll b/References/DESKTOPCLR45/Newtonsoft.Json.dll deleted file mode 100644 index be6558d..0000000 Binary files a/References/DESKTOPCLR45/Newtonsoft.Json.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/Newtonsoft.Json.xml b/References/DESKTOPCLR45/Newtonsoft.Json.xml deleted file mode 100644 index c719433..0000000 --- a/References/DESKTOPCLR45/Newtonsoft.Json.xml +++ /dev/null @@ -1,9229 +0,0 @@ - - - - Newtonsoft.Json - - - - - Represents a BSON Oid (object id). - - - - - Gets or sets the value of the Oid. - - The value of the Oid. - - - - Initializes a new instance of the class. - - The Oid value. - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. - - - true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. - - - - - Gets or sets a value indicating whether the root object will be read as a JSON array. - - - true if the root object will be read as a JSON array; otherwise, false. - - - - - Gets or sets the used when reading values from BSON. - - The used when reading values from BSON. - - - - Initializes a new instance of the class. - - The stream. - - - - Initializes a new instance of the class. - - The reader. - - - - Initializes a new instance of the class. - - The stream. - if set to true the root object will be read as a JSON array. - The used when reading values from BSON. - - - - Initializes a new instance of the class. - - The reader. - if set to true the root object will be read as a JSON array. - The used when reading values from BSON. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Changes the to Closed. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets the used when writing values to BSON. - When set to no conversion will occur. - - The used when writing values to BSON. - - - - Initializes a new instance of the class. - - The stream. - - - - Initializes a new instance of the class. - - The writer. - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Writes the end. - - The token. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes raw JSON where a value is expected and updates the writer's state. - - The raw JSON to write. - - - - Writes the beginning of a JSON array. - - - - - Writes the beginning of a JSON object. - - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Closes this stream and the underlying stream. - - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value that represents a BSON object id. - - The Object ID value to write. - - - - Writes a BSON regex. - - The regex pattern. - The regex options. - - - - Specifies how constructors are used when initializing objects during deserialization by the . - - - - - First attempt to use the public default constructor, then fall back to single parameterized constructor, then the non-public default constructor. - - - - - Json.NET will use a non-public default constructor before falling back to a parameterized constructor. - - - - - Converts a binary value to and from a base 64 string value. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Create a custom object - - The object type to convert. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Creates an object which will then be populated by the serializer. - - Type of the object. - The created object. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can write JSON. - - - true if this can write JSON; otherwise, false. - - - - - Converts a to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified value type. - - Type of the value. - - true if this instance can convert the specified value type; otherwise, false. - - - - - Converts a to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified value type. - - Type of the value. - - true if this instance can convert the specified value type; otherwise, false. - - - - - Provides a base class for converting a to and from JSON. - - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a F# discriminated union type to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts an Entity Framework EntityKey to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts an ExpandoObject to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Gets a value indicating whether this can write JSON. - - - true if this can write JSON; otherwise, false. - - - - - Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). - - - - - Gets or sets the date time styles used when converting a date to and from JSON. - - The date time styles used when converting a date to and from JSON. - - - - Gets or sets the date time format used when converting a date to and from JSON. - - The date time format used when converting a date to and from JSON. - - - - Gets or sets the culture used when converting a date to and from JSON. - - The culture used when converting a date to and from JSON. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing property value of the JSON that is being converted. - The calling serializer. - The object value. - - - - Converts a to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from JSON and BSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts an to and from its name string value. - - - - - Gets or sets a value indicating whether the written enum text should be camel case. - - true if the written enum text will be camel case; otherwise, false. - - - - Gets or sets a value indicating whether integer values are allowed. - - true if integers are allowed; otherwise, false. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - true if the written enum text will be camel case; otherwise, false. - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts a to and from a string (e.g. "1.2.3.4"). - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing property value of the JSON that is being converted. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - Converts XML to and from JSON. - - - - - Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. - - The name of the deserialize root element. - - - - Gets or sets a flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - true if the array attibute is written to the XML; otherwise, false. - - - - Gets or sets a value indicating whether to write the root JSON object. - - true if the JSON root object is omitted; otherwise, false. - - - - Writes the JSON representation of the object. - - The to write to. - The calling serializer. - The value. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Checks if the attributeName is a namespace attribute. - - Attribute name to test. - The attribute name prefix if it has one, otherwise an empty string. - true if attribute name is for a namespace attribute, otherwise false. - - - - Determines whether this instance can convert the specified value type. - - Type of the value. - - true if this instance can convert the specified value type; otherwise, false. - - - - - Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Floating point numbers are parsed to . - - - - - Floating point numbers are parsed to . - - - - - Specifies how dates are formatted when writing JSON text. - - - - - Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". - - - - - Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". - - - - - Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. - - - - - Date formatted strings are not parsed to a date type and are read as strings. - - - - - Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . - - - - - Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . - - - - - Specifies how to treat the time value when converting between string and . - - - - - Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. - - - - - Treat as a UTC. If the object represents a local time, it is converted to a UTC. - - - - - Treat as a local time if a is being converted to a string. - If a string is being converted to , convert to a local time if a time zone is specified. - - - - - Time zone information should be preserved when converting. - - - - - Specifies default value handling options for the . - - - - - - - - - Include members where the member value is the same as the member's default value when serializing objects. - Included members are written to JSON. Has no effect when deserializing. - - - - - Ignore members where the member value is the same as the member's default value when serializing objects - so that is is not written to JSON. - This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, - decimals and floating point numbers; and false for booleans). The default value ignored can be changed by - placing the on the property. - - - - - Members with a default value but no JSON will be set to their default value when deserializing. - - - - - Ignore members where the member value is the same as the member's default value when serializing objects - and sets members to their default value when deserializing. - - - - - Specifies float format handling options when writing special floating point numbers, e.g. , - and with . - - - - - Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". - - - - - Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. - Note that this will produce non-valid JSON. - - - - - Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. - - - - - Specifies formatting options for the . - - - - - No special formatting is applied. This is the default. - - - - - Causes child objects to be indented according to the and settings. - - - - - Provides an interface for using pooled arrays. - - The array type content. - - - - Rent a array from the pool. This array must be returned when it is no longer needed. - - The minimum required length of the array. The returned array may be longer. - The rented array from the pool. This array must be returned when it is no longer needed. - - - - Return an array to the pool. - - The array that is being returned. - - - - Provides an interface to enable a class to return line and position information. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Gets the current line position. - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - Instructs the how to serialize the collection. - - - - - Gets or sets a value indicating whether null items are allowed in the collection. - - true if null items are allowed in the collection; otherwise, false. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with a flag indicating whether the array can contain null items - - A flag indicating whether the array can contain null items. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Instructs the to use the specified constructor when deserializing that object. - - - - - Instructs the how to serialize the object. - - - - - Gets or sets the id. - - The id. - - - - Gets or sets the title. - - The title. - - - - Gets or sets the description. - - The description. - - - - Gets or sets the collection's items converter. - - The collection's items converter. - - - - The parameter list to use when constructing the described by ItemConverterType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the that exactly matches the number, - order, and type of these parameters. - - - [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] - - - - - Gets or sets the of the . - - The of the . - - - - The parameter list to use when constructing the described by NamingStrategyType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the that exactly matches the number, - order, and type of these parameters. - - - [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] - - - - - Gets or sets a value that indicates whether to preserve object references. - - - true to keep object reference; otherwise, false. The default is false. - - - - - Gets or sets a value that indicates whether to preserve collection's items references. - - - true to keep collection's items object references; otherwise, false. The default is false. - - - - - Gets or sets the reference loop handling used when serializing the collection's items. - - The reference loop handling. - - - - Gets or sets the type name handling used when serializing the collection's items. - - The type name handling. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Provides methods for converting between common language runtime types and JSON types. - - - - - - - - Gets or sets a function that creates default . - Default settings are automatically used by serialization methods on , - and and on . - To serialize without using any default settings create a with - . - - - - - Represents JavaScript's boolean value true as a string. This field is read-only. - - - - - Represents JavaScript's boolean value false as a string. This field is read-only. - - - - - Represents JavaScript's null as a string. This field is read-only. - - - - - Represents JavaScript's undefined as a string. This field is read-only. - - - - - Represents JavaScript's positive infinity as a string. This field is read-only. - - - - - Represents JavaScript's negative infinity as a string. This field is read-only. - - - - - Represents JavaScript's NaN as a string. This field is read-only. - - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation using the specified. - - The value to convert. - The format the date will be converted to. - The time zone handling when the date is converted to a string. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation using the specified. - - The value to convert. - The format the date will be converted to. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - The string delimiter character. - The string escape handling. - A JSON string representation of the . - - - - Converts the to its JSON string representation. - - The value to convert. - A JSON string representation of the . - - - - Serializes the specified object to a JSON string. - - The object to serialize. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using formatting. - - The object to serialize. - Indicates how the output is formatted. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a collection of . - - The object to serialize. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using formatting and a collection of . - - The object to serialize. - Indicates how the output is formatted. - A collection converters used while serializing. - A JSON string representation of the object. - - - - Serializes the specified object to a JSON string using . - - The object to serialize. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a type, formatting and . - - The object to serialize. - The used to serialize the object. - If this is null, default serialization settings will be used. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using formatting and . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A JSON string representation of the object. - - - - - Serializes the specified object to a JSON string using a type, formatting and . - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - A JSON string representation of the object. - - - - - Asynchronously serializes the specified object to a JSON string. - Serialization will happen on a new thread. - - The object to serialize. - - A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. - - - - - Asynchronously serializes the specified object to a JSON string using formatting. - Serialization will happen on a new thread. - - The object to serialize. - Indicates how the output is formatted. - - A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. - - - - - Asynchronously serializes the specified object to a JSON string using formatting and a collection of . - Serialization will happen on a new thread. - - The object to serialize. - Indicates how the output is formatted. - The used to serialize the object. - If this is null, default serialization settings will be used. - - A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. - - - - - Deserializes the JSON to a .NET object. - - The JSON to deserialize. - The deserialized object from the JSON string. - - - - Deserializes the JSON to a .NET object using . - - The JSON to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type. - - The JSON to deserialize. - The of object being deserialized. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type. - - The type of the object to deserialize to. - The JSON to deserialize. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the given anonymous type. - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The JSON to deserialize. - The anonymous type object. - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON to the given anonymous type using . - - - The anonymous type to deserialize to. This can't be specified - traditionally and must be infered from the anonymous type passed - as a parameter. - - The JSON to deserialize. - The anonymous type object. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized anonymous type from the JSON string. - - - - Deserializes the JSON to the specified .NET type using a collection of . - - The type of the object to deserialize to. - The JSON to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using . - - The type of the object to deserialize to. - The object to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using a collection of . - - The JSON to deserialize. - The type of the object to deserialize. - Converters to use while deserializing. - The deserialized object from the JSON string. - - - - Deserializes the JSON to the specified .NET type using . - - The JSON to deserialize. - The type of the object to deserialize to. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - The deserialized object from the JSON string. - - - - Asynchronously deserializes the JSON to the specified .NET type. - Deserialization will happen on a new thread. - - The type of the object to deserialize to. - The JSON to deserialize. - - A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. - - - - - Asynchronously deserializes the JSON to the specified .NET type using . - Deserialization will happen on a new thread. - - The type of the object to deserialize to. - The JSON to deserialize. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. - - - - - Asynchronously deserializes the JSON to the specified .NET type. - Deserialization will happen on a new thread. - - The JSON to deserialize. - - A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. - - - - - Asynchronously deserializes the JSON to the specified .NET type using . - Deserialization will happen on a new thread. - - The JSON to deserialize. - The type of the object to deserialize to. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. - - - - - Populates the object with values from the JSON string. - - The JSON to populate values from. - The target object to populate values onto. - - - - Populates the object with values from the JSON string using . - - The JSON to populate values from. - The target object to populate values onto. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - - - Asynchronously populates the object with values from the JSON string using . - - The JSON to populate values from. - The target object to populate values onto. - - The used to deserialize the object. - If this is null, default serialization settings will be used. - - - A task that represents the asynchronous populate operation. - - - - - Serializes the XML node to a JSON string. - - The node to serialize. - A JSON string of the XmlNode. - - - - Serializes the XML node to a JSON string using formatting. - - The node to serialize. - Indicates how the output is formatted. - A JSON string of the XmlNode. - - - - Serializes the XML node to a JSON string using formatting and omits the root object if is true. - - The node to serialize. - Indicates how the output is formatted. - Omits writing the root object. - A JSON string of the XmlNode. - - - - Deserializes the XmlNode from a JSON string. - - The JSON string. - The deserialized XmlNode - - - - Deserializes the XmlNode from a JSON string nested in a root elment specified by . - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XmlNode - - - - Deserializes the XmlNode from a JSON string nested in a root elment specified by - and writes a .NET array attribute for collections. - - The JSON string. - The name of the root element to append when deserializing. - - A flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - The deserialized XmlNode - - - - Serializes the to a JSON string. - - The node to convert to JSON. - A JSON string of the XNode. - - - - Serializes the to a JSON string using formatting. - - The node to convert to JSON. - Indicates how the output is formatted. - A JSON string of the XNode. - - - - Serializes the to a JSON string using formatting and omits the root object if is true. - - The node to serialize. - Indicates how the output is formatted. - Omits writing the root object. - A JSON string of the XNode. - - - - Deserializes the from a JSON string. - - The JSON string. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment specified by . - - The JSON string. - The name of the root element to append when deserializing. - The deserialized XNode - - - - Deserializes the from a JSON string nested in a root elment specified by - and writes a .NET array attribute for collections. - - The JSON string. - The name of the root element to append when deserializing. - - A flag to indicate whether to write the Json.NET array attribute. - This attribute helps preserve arrays when converting the written XML back to JSON. - - The deserialized XNode - - - - Converts an object to and from JSON. - - - - - Writes the JSON representation of the object. - - The to write to. - The value. - The calling serializer. - - - - Reads the JSON representation of the object. - - The to read from. - Type of the object. - The existing value of object being read. - The calling serializer. - The object value. - - - - Determines whether this instance can convert the specified object type. - - Type of the object. - - true if this instance can convert the specified object type; otherwise, false. - - - - - - Gets the of the JSON produced by the JsonConverter. - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - The of the JSON produced by the JsonConverter. - - - - Gets a value indicating whether this can read JSON. - - true if this can read JSON; otherwise, false. - - - - Gets a value indicating whether this can write JSON. - - true if this can write JSON; otherwise, false. - - - - Instructs the to use the specified when serializing the member or class. - - - - - Gets the of the . - - The of the . - - - - The parameter list to use when constructing the described by ConverterType. - If null, the default constructor is used. - - - - - Initializes a new instance of the class. - - Type of the . - - - - Initializes a new instance of the class. - - Type of the . - Parameter list to use when constructing the . Can be null. - - - - Represents a collection of . - - - - - Instructs the how to serialize the collection. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - The exception thrown when an error occurs during JSON serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Instructs the to deserialize properties with no matching class member into the specified collection - and write values during serialization. - - - - - Gets or sets a value that indicates whether to write extension data when serializing the object. - - - true to write extension data when serializing the object; otherwise, false. The default is true. - - - - - Gets or sets a value that indicates whether to read extension data when deserializing the object. - - - true to read extension data when deserializing the object; otherwise, false. The default is true. - - - - - Initializes a new instance of the class. - - - - - Instructs the not to serialize the public field or public read/write property value. - - - - - Instructs the how to serialize the object. - - - - - Gets or sets the member serialization. - - The member serialization. - - - - Gets or sets a value that indicates whether the object's properties are required. - - - A value indicating whether the object's properties are required. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified member serialization. - - The member serialization. - - - - Initializes a new instance of the class with the specified container Id. - - The container Id. - - - - Instructs the to always serialize the member with the specified name. - - - - - Gets or sets the used when serializing the property's collection items. - - The collection's items . - - - - The parameter list to use when constructing the described by ItemConverterType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the that exactly matches the number, - order, and type of these parameters. - - - [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] - - - - - Gets or sets the of the . - - The of the . - - - - The parameter list to use when constructing the described by NamingStrategyType. - If null, the default constructor is used. - When non-null, there must be a constructor defined in the that exactly matches the number, - order, and type of these parameters. - - - [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] - - - - - Gets or sets the null value handling used when serializing this property. - - The null value handling. - - - - Gets or sets the default value handling used when serializing this property. - - The default value handling. - - - - Gets or sets the reference loop handling used when serializing this property. - - The reference loop handling. - - - - Gets or sets the object creation handling used when deserializing this property. - - The object creation handling. - - - - Gets or sets the type name handling used when serializing this property. - - The type name handling. - - - - Gets or sets whether this property's value is serialized as a reference. - - Whether this property's value is serialized as a reference. - - - - Gets or sets the order of serialization of a member. - - The numeric order of serialization. - - - - Gets or sets a value indicating whether this property is required. - - - A value indicating whether this property is required. - - - - - Gets or sets the name of the property. - - The name of the property. - - - - Gets or sets the the reference loop handling used when serializing the property's collection items. - - The collection's items reference loop handling. - - - - Gets or sets the the type name handling used when serializing the property's collection items. - - The collection's items type name handling. - - - - Gets or sets whether this property's collection items are serialized as a reference. - - Whether this property's collection items are serialized as a reference. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified name. - - Name of the property. - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Specifies the state of the reader. - - - - - The Read method has not been called. - - - - - The end of the file has been reached successfully. - - - - - Reader is at a property. - - - - - Reader is at the start of an object. - - - - - Reader is in an object. - - - - - Reader is at the start of an array. - - - - - Reader is in an array. - - - - - The Close method has been called. - - - - - Reader has just read a value. - - - - - Reader is at the start of a constructor. - - - - - Reader in a constructor. - - - - - An error occurred that prevents the read operation from continuing. - - - - - The end of the file has been reached successfully. - - - - - Gets the current reader state. - - The current reader state. - - - - Gets or sets a value indicating whether the underlying stream or - should be closed when the reader is closed. - - - true to close the underlying stream or when - the reader is closed; otherwise false. The default is true. - - - - - Gets or sets a value indicating whether multiple pieces of JSON content can - be read from a continuous stream without erroring. - - - true to support reading multiple pieces of JSON content; otherwise false. The default is false. - - - - - Gets the quotation mark character used to enclose the value of a string. - - - - - Get or set how time zones are handling when reading JSON. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how custom date formatted strings are parsed when reading JSON. - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Gets the type of the current JSON token. - - - - - Gets the text value of the current JSON token. - - - - - Gets The Common Language Runtime (CLR) type for the current JSON token. - - - - - Gets the depth of the current token in the JSON document. - - The depth of the current token in the JSON document. - - - - Gets the path of the current JSON token. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Initializes a new instance of the class with the specified . - - - - - Reads the next JSON token from the stream. - - true if the next token was read successfully; false if there are no more tokens to read. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a []. - - A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Skips the children of the current token. - - - - - Sets the current token. - - The new token. - - - - Sets the current token and value. - - The new token. - The value. - - - - Sets the state based on current token type. - - - - - Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - - - - - Releases unmanaged and - optionally - managed resources - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Changes the to Closed. - - - - - The exception thrown when an error occurs while reading JSON text. - - - - - Gets the line number indicating where the error occurred. - - The line number indicating where the error occurred. - - - - Gets the line position indicating where the error occurred. - - The line position indicating where the error occurred. - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Instructs the to always serialize the member, and require the member has a value. - - - - - The exception thrown when an error occurs during JSON serialization or deserialization. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Serializes and deserializes objects into and from the JSON format. - The enables you to control how objects are encoded into JSON. - - - - - Occurs when the errors during serialization and deserialization. - - - - - Gets or sets the used by the serializer when resolving references. - - - - - Gets or sets the used by the serializer when resolving type names. - - - - - Gets or sets the used by the serializer when writing trace messages. - - The trace writer. - - - - Gets or sets the equality comparer used by the serializer when comparing references. - - The equality comparer. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how object references are preserved by the serializer. - - - - - Get or set how reference loops (e.g. a class referencing itself) is handled. - - - - - Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - - - - Get or set how null values are handled during serialization and deserialization. - - - - - Get or set how null default are handled during serialization and deserialization. - - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets how metadata properties are used during deserialization. - - The metadata properties handling. - - - - Gets a collection that will be used during serialization. - - Collection that will be used during serialization. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling during serialization and deserialization. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written as JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. - - - true if there will be a check for additional JSON content after deserializing an object; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Creates a new instance. - The will not use default settings - from . - - - A new instance. - The will not use default settings - from . - - - - - Creates a new instance using the specified . - The will not use default settings - from . - - The settings to be applied to the . - - A new instance using the specified . - The will not use default settings - from . - - - - - Creates a new instance. - The will use default settings - from . - - - A new instance. - The will use default settings - from . - - - - - Creates a new instance using the specified . - The will use default settings - from as well as the specified . - - The settings to be applied to the . - - A new instance using the specified . - The will use default settings - from as well as the specified . - - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Populates the JSON values onto the target object. - - The that contains the JSON structure to reader values from. - The target object to populate values onto. - - - - Deserializes the JSON structure contained by the specified . - - The that contains the JSON structure to deserialize. - The being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The type of the object to deserialize. - The instance of being deserialized. - - - - Deserializes the JSON structure contained by the specified - into an instance of the specified type. - - The containing the object. - The of object being deserialized. - The instance of being deserialized. - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - The type of the value being serialized. - This parameter is used when is Auto to write out the type name if the type of the value does not match. - Specifing the type is optional. - - - - - Serializes the specified and writes the JSON structure - to a Stream using the specified . - - The used to write the JSON structure. - The to serialize. - - - - Specifies the settings on a object. - - - - - Gets or sets how reference loops (e.g. a class referencing itself) is handled. - - Reference loop handling. - - - - Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. - - Missing member handling. - - - - Gets or sets how objects are created during deserialization. - - The object creation handling. - - - - Gets or sets how null values are handled during serialization and deserialization. - - Null value handling. - - - - Gets or sets how null default are handled during serialization and deserialization. - - The default value handling. - - - - Gets or sets a collection that will be used during serialization. - - The converters. - - - - Gets or sets how object references are preserved by the serializer. - - The preserve references handling. - - - - Gets or sets how type name writing and reading is handled by the serializer. - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - The type name handling. - - - - Gets or sets how metadata properties are used during deserialization. - - The metadata properties handling. - - - - Gets or sets how a type name assembly is written and resolved by the serializer. - - The type name assembly format. - - - - Gets or sets how constructors are used during deserialization. - - The constructor handling. - - - - Gets or sets the contract resolver used by the serializer when - serializing .NET objects to JSON and vice versa. - - The contract resolver. - - - - Gets or sets the equality comparer used by the serializer when comparing references. - - The equality comparer. - - - - Gets or sets the used by the serializer when resolving references. - - The reference resolver. - - - - Gets or sets a function that creates the used by the serializer when resolving references. - - A function that creates the used by the serializer when resolving references. - - - - Gets or sets the used by the serializer when writing trace messages. - - The trace writer. - - - - Gets or sets the used by the serializer when resolving type names. - - The binder. - - - - Gets or sets the error handler called during serialization and deserialization. - - The error handler called during serialization and deserialization. - - - - Gets or sets the used by the serializer when invoking serialization callback methods. - - The context. - - - - Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. - - - - - Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . - - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling during serialization and deserialization. - - - - - Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written as JSON. - - - - - Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Gets or sets the culture used when reading JSON. Defaults to . - - - - - Gets a value indicating whether there will be a check for additional content after deserializing an object. - - - true if there will be a check for additional content after deserializing an object; otherwise, false. - - - - - Initializes a new instance of the class. - - - - - Represents a reader that provides fast, non-cached, forward-only access to JSON text data. - - - - - Initializes a new instance of the class with the specified . - - The TextReader containing the XML data to read. - - - - Gets or sets the reader's character buffer pool. - - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a []. - - A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Changes the state to closed. - - - - - Gets a value indicating whether the class can return line information. - - - true if LineNumber and LinePosition can be provided; otherwise, false. - - - - - Gets the current line number. - - - The current line number or 0 if no line information is available (for example, HasLineInfo returns false). - - - - - Gets the current line position. - - - The current line position or 0 if no line information is available (for example, HasLineInfo returns false). - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets the writer's character array pool. - - - - - Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. - - - - - Gets or sets which character to use to quote attribute values. - - - - - Gets or sets which character to use for indenting when is set to Formatting.Indented. - - - - - Gets or sets a value indicating whether object names will be surrounded with quotes. - - - - - Creates an instance of the JsonWriter class using the specified . - - The TextWriter to write to. - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the specified end token. - - The end token to write. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - A flag to indicate whether the text should be escaped when it is written as a JSON property name. - - - - Writes indent characters. - - - - - Writes the JSON value delimiter. - - - - - Writes an indent space. - - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes out the given white space. - - The string of white space characters. - - - - Specifies the type of JSON token. - - - - - This is returned by the if a method has not been called. - - - - - An object start token. - - - - - An array start token. - - - - - A constructor start token. - - - - - An object property name. - - - - - A comment. - - - - - Raw JSON. - - - - - An integer. - - - - - A float. - - - - - A string. - - - - - A boolean. - - - - - A null token. - - - - - An undefined token. - - - - - An object end token. - - - - - An array end token. - - - - - A constructor end token. - - - - - A Date. - - - - - Byte data. - - - - - - Represents a reader that provides validation. - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - Sets an event handler for receiving schema validation errors. - - - - - Gets the text value of the current JSON token. - - - - - - Gets the depth of the current token in the JSON document. - - The depth of the current token in the JSON document. - - - - Gets the path of the current JSON token. - - - - - Gets the quotation mark character used to enclose the value of a string. - - - - - - Gets the type of the current JSON token. - - - - - - Gets the Common Language Runtime (CLR) type for the current JSON token. - - - - - - Initializes a new instance of the class that - validates the content returned from the given . - - The to read from while validating. - - - - Gets or sets the schema. - - The schema. - - - - Gets the used to construct this . - - The specified in the constructor. - - - - Reads the next JSON token from the stream as a . - - A . - - - - Reads the next JSON token from the stream as a []. - - - A [] or a null reference if the next JSON token is null. - - - - - Reads the next JSON token from the stream as a . - - A . - - - - Reads the next JSON token from the stream as a . - - A . - - - - Reads the next JSON token from the stream as a . - - A . - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . This method will return null at the end of an array. - - - - Reads the next JSON token from the stream as a . - - A . - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets or sets a value indicating whether the underlying stream or - should be closed when the writer is closed. - - - true to close the underlying stream or when - the writer is closed; otherwise false. The default is true. - - - - - Gets the top. - - The top. - - - - Gets the state of the writer. - - - - - Gets the path of the writer. - - - - - Indicates how JSON text output is formatted. - - - - - Get or set how dates are written to JSON text. - - - - - Get or set how time zones are handling when writing JSON text. - - - - - Get or set how strings are escaped when writing JSON text. - - - - - Get or set how special floating point numbers, e.g. , - and , - are written to JSON text. - - - - - Get or set how and values are formatting when writing JSON text. - - - - - Gets or sets the culture used when writing JSON. Defaults to . - - - - - Creates an instance of the JsonWriter class. - - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the end of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the end of an array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the end constructor. - - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - A flag to indicate whether the text should be escaped when it is written as a JSON property name. - - - - Writes the end of the current JSON object or array. - - - - - Writes the current token and its children. - - The to read the token from. - - - - Writes the current token. - - The to read the token from. - A flag indicating whether the current token's children should be written. - - - - Writes the token and its value. - - The to write. - - The value to write. - A value is only required for tokens that have an associated value, e.g. the property name for . - A null value can be passed to the method for token's that don't have a value, e.g. . - - - - Writes the token. - - The to write. - - - - Writes the specified end token. - - The end token to write. - - - - Writes indent characters. - - - - - Writes the JSON value delimiter. - - - - - Writes an indent space. - - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON without changing the writer's state. - - The raw JSON to write. - - - - Writes raw JSON where a value is expected and updates the writer's state. - - The raw JSON to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes out the given white space. - - The string of white space characters. - - - - Releases unmanaged and - optionally - managed resources - - true to release both managed and unmanaged resources; false to release only unmanaged resources. - - - - Sets the state of the JsonWriter, - - The JsonToken being written. - The value being written. - - - - The exception thrown when an error occurs while reading JSON text. - - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - Specifies how JSON comments are handled when loading JSON. - - - - - Ignore comments. - - - - - Load comments as a with type . - - - - - Specifies how line information is handled when loading JSON. - - - - - Ignore line information. - - - - - Load line information. - - - - - Contains the LINQ to JSON extension methods. - - - - - Returns a collection of tokens that contains the ancestors of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains the ancestors of every token in the source collection. - - - - Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains every token in the source collection, the ancestors of every token in the source collection. - - - - Returns a collection of tokens that contains the descendants of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains the descendants of every token in the source collection. - - - - Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. - - The type of the objects in source, constrained to . - An of that contains the source collection. - An of that contains every token in the source collection, and the descendants of every token in the source collection. - - - - Returns a collection of child properties of every object in the source collection. - - An of that contains the source collection. - An of that contains the properties of every object in the source collection. - - - - Returns a collection of child values of every object in the source collection with the given key. - - An of that contains the source collection. - The token key. - An of that contains the values of every token in the source collection with the given key. - - - - Returns a collection of child values of every object in the source collection. - - An of that contains the source collection. - An of that contains the values of every token in the source collection. - - - - Returns a collection of converted child values of every object in the source collection with the given key. - - The type to convert the values to. - An of that contains the source collection. - The token key. - An that contains the converted values of every token in the source collection with the given key. - - - - Returns a collection of converted child values of every object in the source collection. - - The type to convert the values to. - An of that contains the source collection. - An that contains the converted values of every token in the source collection. - - - - Converts the value. - - The type to convert the value to. - A cast as a of . - A converted value. - - - - Converts the value. - - The source collection type. - The type to convert the value to. - A cast as a of . - A converted value. - - - - Returns a collection of child tokens of every array in the source collection. - - The source collection type. - An of that contains the source collection. - An of that contains the values of every token in the source collection. - - - - Returns a collection of converted child tokens of every array in the source collection. - - An of that contains the source collection. - The type to convert the values to. - The source collection type. - An that contains the converted values of every token in the source collection. - - - - Returns the input typed as . - - An of that contains the source collection. - The input typed as . - - - - Returns the input typed as . - - The source collection type. - An of that contains the source collection. - The input typed as . - - - - Represents a collection of objects. - - The type of token - - - - Gets the with the specified key. - - - - - - Represents a JSON array. - - - - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Initializes a new instance of the class with the specified content. - - The contents of the array. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets or sets the at the specified index. - - - - - - Determines the index of a specific item in the . - - The object to locate in the . - - The index of if found in the list; otherwise, -1. - - - - - Inserts an item to the at the specified index. - - The zero-based index at which should be inserted. - The object to insert into the . - - is not a valid index in the . - The is read-only. - - - - Removes the item at the specified index. - - The zero-based index of the item to remove. - - is not a valid index in the . - The is read-only. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Adds an item to the . - - The object to add to the . - The is read-only. - - - - Removes all items from the . - - The is read-only. - - - - Determines whether the contains a specific value. - - The object to locate in the . - - true if is found in the ; otherwise, false. - - - - - Copies to. - - The array. - Index of the array. - - - - Gets a value indicating whether the is read-only. - - true if the is read-only; otherwise, false. - - - - Removes the first occurrence of a specific object from the . - - The object to remove from the . - - true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . - - The is read-only. - - - - Represents a JSON constructor. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets or sets the name of this constructor. - - The constructor name. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified name and content. - - The constructor name. - The contents of the constructor. - - - - Initializes a new instance of the class with the specified name and content. - - The constructor name. - The contents of the constructor. - - - - Initializes a new instance of the class with the specified name. - - The constructor name. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified key. - - The with the specified key. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Represents a token that can contain other tokens. - - - - - Occurs when the list changes or an item in the list changes. - - - - - Occurs before an item is added to the collection. - - - - - Occurs when the items list of the collection has changed, or the collection is reset. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Raises the event. - - The instance containing the event data. - - - - Raises the event. - - The instance containing the event data. - - - - Raises the event. - - The instance containing the event data. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Get the first child token of this token. - - - A containing the first child token of the . - - - - - Get the last child token of this token. - - - A containing the last child token of the . - - - - - Returns a collection of the child tokens of this token, in document order. - - - An of containing the child tokens of this , in document order. - - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - - A containing the child values of this , in document order. - - - - - Returns a collection of the descendant tokens for this token in document order. - - An containing the descendant tokens of the . - - - - Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. - - An containing this token, and all the descendant tokens of the . - - - - Adds the specified content as children of this . - - The content to be added. - - - - Adds the specified content as the first children of this . - - The content to be added. - - - - Creates an that can be used to add tokens to the . - - An that is ready to have content written to it. - - - - Replaces the children nodes of this token with the specified content. - - The content. - - - - Removes the child nodes from this token. - - - - - Merge the specified content into this . - - The content to be merged. - - - - Merge the specified content into this using . - - The content to be merged. - The used to merge the content. - - - - Gets the count of child JSON tokens. - - The count of child JSON tokens - - - - Represents a collection of objects. - - The type of token - - - - An empty collection of objects. - - - - - Initializes a new instance of the struct. - - The enumerable. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Returns an enumerator that iterates through a collection. - - - An object that can be used to iterate through the collection. - - - - - Gets the with the specified key. - - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Determines whether the specified is equal to this instance. - - The to compare with this instance. - - true if the specified is equal to this instance; otherwise, false. - - - - - Returns a hash code for this instance. - - - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. - - - - - Represents a JSON object. - - - - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Occurs when a property value changes. - - - - - Occurs when a property value is changing. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the specified content. - - The contents of the object. - - - - Initializes a new instance of the class with the specified content. - - The contents of the object. - - - - Gets the node type for this . - - The type. - - - - Gets an of this object's properties. - - An of this object's properties. - - - - Gets a the specified name. - - The property name. - A with the specified name or null. - - - - Gets an of this object's property values. - - An of this object's property values. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets or sets the with the specified property name. - - - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - - - - Creates a from an object. - - The object that will be used to create . - A with the values of the specified object - - - - Creates a from an object. - - The object that will be used to create . - The that will be used to read the object. - A with the values of the specified object - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Gets the with the specified property name. - - Name of the property. - The with the specified property name. - - - - Gets the with the specified property name. - The exact property name will be searched for first and if no matching property is found then - the will be used to match a property. - - Name of the property. - One of the enumeration values that specifies how the strings will be compared. - The with the specified property name. - - - - Tries to get the with the specified property name. - The exact property name will be searched for first and if no matching property is found then - the will be used to match a property. - - Name of the property. - The value. - One of the enumeration values that specifies how the strings will be compared. - true if a value was successfully retrieved; otherwise, false. - - - - Adds the specified property name. - - Name of the property. - The value. - - - - Removes the property with the specified name. - - Name of the property. - true if item was successfully removed; otherwise, false. - - - - Tries the get value. - - Name of the property. - The value. - true if a value was successfully retrieved; otherwise, false. - - - - Returns an enumerator that iterates through the collection. - - - A that can be used to iterate through the collection. - - - - - Raises the event with the provided arguments. - - Name of the property. - - - - Raises the event with the provided arguments. - - Name of the property. - - - - Returns the properties for this instance of a component. - - - A that represents the properties for this component instance. - - - - - Returns the properties for this instance of a component using the attribute array as a filter. - - An array of type that is used as a filter. - - A that represents the filtered properties for this component instance. - - - - - Returns a collection of custom attributes for this instance of a component. - - - An containing the attributes for this object. - - - - - Returns the class name of this instance of a component. - - - The class name of the object, or null if the class does not have a name. - - - - - Returns the name of this instance of a component. - - - The name of the object, or null if the object does not have a name. - - - - - Returns a type converter for this instance of a component. - - - A that is the converter for this object, or null if there is no for this object. - - - - - Returns the default event for this instance of a component. - - - An that represents the default event for this object, or null if this object does not have events. - - - - - Returns the default property for this instance of a component. - - - A that represents the default property for this object, or null if this object does not have properties. - - - - - Returns an editor of the specified type for this instance of a component. - - A that represents the editor for this object. - - An of the specified type that is the editor for this object, or null if the editor cannot be found. - - - - - Returns the events for this instance of a component using the specified attribute array as a filter. - - An array of type that is used as a filter. - - An that represents the filtered events for this component instance. - - - - - Returns the events for this instance of a component. - - - An that represents the events for this component instance. - - - - - Returns an object that contains the property described by the specified property descriptor. - - A that represents the property whose owner is to be found. - - An that represents the owner of the specified property. - - - - - Returns the responsible for binding operations performed on this object. - - The expression tree representation of the runtime value. - - The to bind this object. - - - - - Specifies the settings used when merging JSON. - - - - - Gets or sets the method used when merging JSON arrays. - - The method used when merging JSON arrays. - - - - Gets or sets how how null value properties are merged. - - How null value properties are merged. - - - - Represents a JSON property. - - - - - Gets the container's children tokens. - - The container's children tokens. - - - - Gets the property name. - - The property name. - - - - Gets or sets the property value. - - The property value. - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Gets the node type for this . - - The type. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Initializes a new instance of the class. - - The property name. - The property content. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Loads an from a . - - A that will be read for the content of the . - A that contains the JSON that was read from the specified . - - - - Loads an from a . - - A that will be read for the content of the . - The used to load the JSON. - If this is null, default load settings will be used. - A that contains the JSON that was read from the specified . - - - - Represents a view of a . - - - - - Initializes a new instance of the class. - - The name. - - - - When overridden in a derived class, returns whether resetting an object changes its value. - - - true if resetting the component changes its value; otherwise, false. - - The component to test for reset capability. - - - - When overridden in a derived class, gets the current value of the property on a component. - - - The value of a property for a given component. - - The component with the property for which to retrieve the value. - - - - - When overridden in a derived class, resets the value for this property of the component to the default value. - - The component with the property value that is to be reset to the default value. - - - - - When overridden in a derived class, sets the value of the component to a different value. - - The component with the property value that is to be set. - The new value. - - - - - When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. - - - true if the property should be persisted; otherwise, false. - - The component with the property to be examined for persistence. - - - - When overridden in a derived class, gets the type of the component this property is bound to. - - - A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. - - - - - When overridden in a derived class, gets a value indicating whether this property is read-only. - - - true if the property is read-only; otherwise, false. - - - - - When overridden in a derived class, gets the type of the property. - - - A that represents the type of the property. - - - - - Gets the hash code for the name of the member. - - - - The hash code for the name of the member. - - - - - Represents a raw JSON string. - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class. - - The raw json. - - - - Creates an instance of with the content of the reader's current token. - - The reader. - An instance of with the content of the reader's current token. - - - - Represents an abstract JSON token. - - - - - Gets a comparer that can compare two tokens for value equality. - - A that can compare two nodes for value equality. - - - - Gets or sets the parent. - - The parent. - - - - Gets the root of this . - - The root of this . - - - - Gets the node type for this . - - The type. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Compares the values of two tokens, including the values of all descendant tokens. - - The first to compare. - The second to compare. - true if the tokens are equal; otherwise false. - - - - Gets the next sibling token of this node. - - The that contains the next sibling token. - - - - Gets the previous sibling token of this node. - - The that contains the previous sibling token. - - - - Gets the path of the JSON token. - - - - - Adds the specified content immediately after this token. - - A content object that contains simple content or a collection of content objects to be added after this token. - - - - Adds the specified content immediately before this token. - - A content object that contains simple content or a collection of content objects to be added before this token. - - - - Returns a collection of the ancestor tokens of this token. - - A collection of the ancestor tokens of this token. - - - - Returns a collection of tokens that contain this token, and the ancestors of this token. - - A collection of tokens that contain this token, and the ancestors of this token. - - - - Returns a collection of the sibling tokens after this token, in document order. - - A collection of the sibling tokens after this tokens, in document order. - - - - Returns a collection of the sibling tokens before this token, in document order. - - A collection of the sibling tokens before this token, in document order. - - - - Gets the with the specified key. - - The with the specified key. - - - - Gets the with the specified key converted to the specified type. - - The type to convert the token to. - The token key. - The converted token value. - - - - Get the first child token of this token. - - A containing the first child token of the . - - - - Get the last child token of this token. - - A containing the last child token of the . - - - - Returns a collection of the child tokens of this token, in document order. - - An of containing the child tokens of this , in document order. - - - - Returns a collection of the child tokens of this token, in document order, filtered by the specified type. - - The type to filter the child tokens on. - A containing the child tokens of this , in document order. - - - - Returns a collection of the child values of this token, in document order. - - The type to convert the values to. - A containing the child values of this , in document order. - - - - Removes this token from its parent. - - - - - Replaces this token with the specified token. - - The value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Returns the indented JSON for this token. - - - The indented JSON for this token. - - - - - Returns the JSON for this token using the given formatting and converters. - - Indicates how the output is formatted. - A collection of which will be used when writing the token. - The JSON for this token using the given formatting and converters. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to []. - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an explicit conversion from to . - - The value. - The result of the conversion. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from [] to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Performs an implicit conversion from to . - - The value to create a from. - The initialized with the specified value. - - - - Creates an for this token. - - An that can be used to read this token and its descendants. - - - - Creates a from an object. - - The object that will be used to create . - A with the value of the specified object - - - - Creates a from an object using the specified . - - The object that will be used to create . - The that will be used when reading the object. - A with the value of the specified object - - - - Creates the specified .NET type from the . - - The object type that the token will be deserialized to. - The new object created from the JSON value. - - - - Creates the specified .NET type from the . - - The object type that the token will be deserialized to. - The new object created from the JSON value. - - - - Creates the specified .NET type from the using the specified . - - The object type that the token will be deserialized to. - The that will be used when creating the object. - The new object created from the JSON value. - - - - Creates the specified .NET type from the using the specified . - - The object type that the token will be deserialized to. - The that will be used when creating the object. - The new object created from the JSON value. - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Creates a from a . - - An positioned at the token to read into this . - The used to load the JSON. - If this is null, default load settings will be used. - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Load a from a string that contains JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - Load a from a string that contains JSON. - - A that contains JSON. - The used to load the JSON. - If this is null, default load settings will be used. - A populated from the string that contains JSON. - - - - Creates a from a . - - An positioned at the token to read into this . - The used to load the JSON. - If this is null, default load settings will be used. - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Creates a from a . - - An positioned at the token to read into this . - - An that contains the token and its descendant tokens - that were read from the reader. The runtime type of the token is determined - by the token type of the first token encountered in the reader. - - - - - Selects a using a JPath expression. Selects the token that matches the object path. - - - A that contains a JPath expression. - - A , or null. - - - - Selects a using a JPath expression. Selects the token that matches the object path. - - - A that contains a JPath expression. - - A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. - A . - - - - Selects a collection of elements using a JPath expression. - - - A that contains a JPath expression. - - An that contains the selected elements. - - - - Selects a collection of elements using a JPath expression. - - - A that contains a JPath expression. - - A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. - An that contains the selected elements. - - - - Returns the responsible for binding operations performed on this object. - - The expression tree representation of the runtime value. - - The to bind this object. - - - - - Returns the responsible for binding operations performed on this object. - - The expression tree representation of the runtime value. - - The to bind this object. - - - - - Creates a new instance of the . All child tokens are recursively cloned. - - A new instance of the . - - - - Adds an object to the annotation list of this . - - The annotation to add. - - - - Get the first annotation object of the specified type from this . - - The type of the annotation to retrieve. - The first annotation object that matches the specified type, or null if no annotation is of the specified type. - - - - Gets the first annotation object of the specified type from this . - - The of the annotation to retrieve. - The first annotation object that matches the specified type, or null if no annotation is of the specified type. - - - - Gets a collection of annotations of the specified type for this . - - The type of the annotations to retrieve. - An that contains the annotations for this . - - - - Gets a collection of annotations of the specified type for this . - - The of the annotations to retrieve. - An of that contains the annotations that match the specified type for this . - - - - Removes the annotations of the specified type from this . - - The type of annotations to remove. - - - - Removes the annotations of the specified type from this . - - The of annotations to remove. - - - - Compares tokens to determine whether they are equal. - - - - - Determines whether the specified objects are equal. - - The first object of type to compare. - The second object of type to compare. - - true if the specified objects are equal; otherwise, false. - - - - - Returns a hash code for the specified object. - - The for which a hash code is to be returned. - A hash code for the specified object. - The type of is a reference type and is null. - - - - Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. - - - - - Gets the at the reader's current position. - - - - - Initializes a new instance of the class. - - The token to read from. - - - - Reads the next JSON token from the stream. - - - true if the next token was read successfully; false if there are no more tokens to read. - - - - - Gets the path of the current JSON token. - - - - - Specifies the type of token. - - - - - No token type has been set. - - - - - A JSON object. - - - - - A JSON array. - - - - - A JSON constructor. - - - - - A JSON object property. - - - - - A comment. - - - - - An integer value. - - - - - A float value. - - - - - A string value. - - - - - A boolean value. - - - - - A null value. - - - - - An undefined value. - - - - - A date value. - - - - - A raw JSON value. - - - - - A collection of bytes value. - - - - - A Guid value. - - - - - A Uri value. - - - - - A TimeSpan value. - - - - - Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. - - - - - Gets the at the writer's current position. - - - - - Gets the token being writen. - - The token being writen. - - - - Initializes a new instance of the class writing to the given . - - The container being written to. - - - - Initializes a new instance of the class. - - - - - Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. - - - - - Closes this stream and the underlying stream. - - - - - Writes the beginning of a JSON object. - - - - - Writes the beginning of a JSON array. - - - - - Writes the start of a constructor with the given name. - - The name of the constructor. - - - - Writes the end. - - The token. - - - - Writes the property name of a name/value pair on a JSON object. - - The name of the property. - - - - Writes a value. - An error will raised if the value cannot be written as a single JSON token. - - The value to write. - - - - Writes a null value. - - - - - Writes an undefined value. - - - - - Writes raw JSON. - - The raw JSON to write. - - - - Writes out a comment /*...*/ containing the specified text. - - Text to place inside the comment. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a [] value. - - The [] value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Writes a value. - - The value to write. - - - - Represents a value in JSON (string, integer, date, etc). - - - - - Initializes a new instance of the class from another object. - - A object to copy from. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Initializes a new instance of the class with the given value. - - The value. - - - - Gets a value indicating whether this token has child tokens. - - - true if this token has child values; otherwise, false. - - - - - Creates a comment with the given value. - - The value. - A comment with the given value. - - - - Creates a string with the given value. - - The value. - A string with the given value. - - - - Creates a null value. - - A null value. - - - - Creates a undefined value. - - A undefined value. - - - - Gets the node type for this . - - The type. - - - - Gets or sets the underlying token value. - - The underlying token value. - - - - Writes this token to a . - - A into which this method will write. - A collection of which will be used when writing the token. - - - - Indicates whether the current object is equal to another object of the same type. - - - true if the current object is equal to the parameter; otherwise, false. - - An object to compare with this object. - - - - Determines whether the specified is equal to the current . - - The to compare with the current . - - true if the specified is equal to the current ; otherwise, false. - - - The parameter is null. - - - - - Serves as a hash function for a particular type. - - - A hash code for the current . - - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format provider. - - A that represents this instance. - - - - - Returns a that represents this instance. - - The format. - The format provider. - - A that represents this instance. - - - - - Returns the responsible for binding operations performed on this object. - - The expression tree representation of the runtime value. - - The to bind this object. - - - - - Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. - - An object to compare with this instance. - - A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: - Value - Meaning - Less than zero - This instance is less than . - Zero - This instance is equal to . - Greater than zero - This instance is greater than . - - - is not the same type as this instance. - - - - - Specifies the settings used when loading JSON. - - - - - Gets or sets how JSON comments are handled when loading JSON. - - The JSON comment handling. - - - - Gets or sets how JSON line info is handled when loading JSON. - - The JSON line info handling. - - - - Specifies how JSON arrays are merged together. - - - - Concatenate arrays. - - - Union arrays, skipping items that already exist. - - - Replace all array items. - - - Merge array items together, matched by index. - - - - Specifies how null value properties are merged. - - - - - The content's null value properties will be ignored during merging. - - - - - The content's null value properties will be merged. - - - - - Specifies the member serialization options for the . - - - - - All public members are serialized by default. Members can be excluded using or . - This is the default member serialization mode. - - - - - Only members marked with or are serialized. - This member serialization mode can also be set by marking the class with . - - - - - All public and private fields are serialized. Members can be excluded using or . - This member serialization mode can also be set by marking the class with - and setting IgnoreSerializableAttribute on to false. - - - - - Specifies metadata property handling options for the . - - - - - Read metadata properties located at the start of a JSON object. - - - - - Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. - - - - - Do not try to read metadata properties. - - - - - Specifies missing member handling options for the . - - - - - Ignore a missing member and do not attempt to deserialize it. - - - - - Throw a when a missing member is encountered during deserialization. - - - - - Specifies null value handling options for the . - - - - - - - - - Include null values when serializing and deserializing objects. - - - - - Ignore null values when serializing and deserializing objects. - - - - - Specifies how object creation is handled by the . - - - - - Reuse existing objects, create new objects when needed. - - - - - Only reuse existing objects. - - - - - Always create new objects. - - - - - Specifies reference handling options for the . - Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. - - - - - - - - Do not preserve references when serializing types. - - - - - Preserve references when serializing into a JSON object structure. - - - - - Preserve references when serializing into a JSON array structure. - - - - - Preserve references when serializing. - - - - - Specifies reference loop handling options for the . - - - - - Throw a when a loop is encountered. - - - - - Ignore loop references and do not serialize. - - - - - Serialize loop references. - - - - - Indicating whether a property is required. - - - - - The property is not required. The default state. - - - - - The property must be defined in JSON but can be a null value. - - - - - The property must be defined in JSON and cannot be a null value. - - - - - The property is not required but it cannot be a null value. - - - - - - Contains the JSON schema extension methods. - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - - Determines whether the is valid. - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - The source to test. - The schema to test with. - - true if the specified is valid; otherwise, false. - - - - - - Determines whether the is valid. - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - The source to test. - The schema to test with. - When this method returns, contains any error messages generated while validating. - - true if the specified is valid; otherwise, false. - - - - - - Validates the specified . - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - The source to test. - The schema to test with. - - - - - Validates the specified . - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - The source to test. - The schema to test with. - The validation event handler. - - - - - An in-memory representation of a JSON Schema. - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - Gets or sets the id. - - - - - Gets or sets the title. - - - - - Gets or sets whether the object is required. - - - - - Gets or sets whether the object is read only. - - - - - Gets or sets whether the object is visible to users. - - - - - Gets or sets whether the object is transient. - - - - - Gets or sets the description of the object. - - - - - Gets or sets the types of values allowed by the object. - - The type. - - - - Gets or sets the pattern. - - The pattern. - - - - Gets or sets the minimum length. - - The minimum length. - - - - Gets or sets the maximum length. - - The maximum length. - - - - Gets or sets a number that the value should be divisble by. - - A number that the value should be divisble by. - - - - Gets or sets the minimum. - - The minimum. - - - - Gets or sets the maximum. - - The maximum. - - - - Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. - - A flag indicating whether the value can not equal the number defined by the "minimum" attribute. - - - - Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. - - A flag indicating whether the value can not equal the number defined by the "maximum" attribute. - - - - Gets or sets the minimum number of items. - - The minimum number of items. - - - - Gets or sets the maximum number of items. - - The maximum number of items. - - - - Gets or sets the of items. - - The of items. - - - - Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . - - - true if items are validated using their array position; otherwise, false. - - - - - Gets or sets the of additional items. - - The of additional items. - - - - Gets or sets a value indicating whether additional items are allowed. - - - true if additional items are allowed; otherwise, false. - - - - - Gets or sets whether the array items must be unique. - - - - - Gets or sets the of properties. - - The of properties. - - - - Gets or sets the of additional properties. - - The of additional properties. - - - - Gets or sets the pattern properties. - - The pattern properties. - - - - Gets or sets a value indicating whether additional properties are allowed. - - - true if additional properties are allowed; otherwise, false. - - - - - Gets or sets the required property if this property is present. - - The required property if this property is present. - - - - Gets or sets the a collection of valid enum values allowed. - - A collection of valid enum values allowed. - - - - Gets or sets disallowed types. - - The disallow types. - - - - Gets or sets the default value. - - The default value. - - - - Gets or sets the collection of that this schema extends. - - The collection of that this schema extends. - - - - Gets or sets the format. - - The format. - - - - Initializes a new instance of the class. - - - - - Reads a from the specified . - - The containing the JSON Schema to read. - The object representing the JSON Schema. - - - - Reads a from the specified . - - The containing the JSON Schema to read. - The to use when resolving schema references. - The object representing the JSON Schema. - - - - Load a from a string that contains schema JSON. - - A that contains JSON. - A populated from the string that contains JSON. - - - - Parses the specified json. - - The json. - The resolver. - A populated from the string that contains JSON. - - - - Writes this schema to a . - - A into which this method will write. - - - - Writes this schema to a using the specified . - - A into which this method will write. - The resolver used. - - - - Returns a that represents the current . - - - A that represents the current . - - - - - - Returns detailed information about the schema exception. - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - Gets the line number indicating where the error occurred. - - The line number indicating where the error occurred. - - - - Gets the line position indicating where the error occurred. - - The line position indicating where the error occurred. - - - - Gets the path to the JSON where the error occurred. - - The path to the JSON where the error occurred. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class - with a specified error message. - - The error message that explains the reason for the exception. - - - - Initializes a new instance of the class - with a specified error message and a reference to the inner exception that is the cause of this exception. - - The error message that explains the reason for the exception. - The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. - - - - Initializes a new instance of the class. - - The that holds the serialized object data about the exception being thrown. - The that contains contextual information about the source or destination. - The parameter is null. - The class name is null or is zero (0). - - - - - Generates a from a specified . - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - Gets or sets how undefined schemas are handled by the serializer. - - - - - Gets or sets the contract resolver. - - The contract resolver. - - - - Generate a from the specified type. - - The type to generate a from. - A generated from the specified type. - - - - Generate a from the specified type. - - The type to generate a from. - The used to resolve schema references. - A generated from the specified type. - - - - Generate a from the specified type. - - The type to generate a from. - Specify whether the generated root will be nullable. - A generated from the specified type. - - - - Generate a from the specified type. - - The type to generate a from. - The used to resolve schema references. - Specify whether the generated root will be nullable. - A generated from the specified type. - - - - - Resolves from an id. - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - Gets or sets the loaded schemas. - - The loaded schemas. - - - - Initializes a new instance of the class. - - - - - Gets a for the specified reference. - - The id. - A for the specified reference. - - - - - The value types allowed by the . - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - No type specified. - - - - - String type. - - - - - Float type. - - - - - Integer type. - - - - - Boolean type. - - - - - Object type. - - - - - Array type. - - - - - Null type. - - - - - Any type. - - - - - - Specifies undefined schema Id handling options for the . - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - Do not infer a schema Id. - - - - - Use the .NET type name as the schema Id. - - - - - Use the assembly qualified .NET type name as the schema Id. - - - - - - Returns detailed information related to the . - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - Gets the associated with the validation error. - - The JsonSchemaException associated with the validation error. - - - - Gets the path of the JSON location where the validation error occurred. - - The path of the JSON location where the validation error occurred. - - - - Gets the text description corresponding to the validation error. - - The text description. - - - - - Represents the callback method that will handle JSON schema validation events and the . - - - JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. - - - - - - A snake case naming strategy. - - - - - Initializes a new instance of the class. - - - A flag indicating whether dictionary keys should be processed. - - - A flag indicating whether explicitly specified property names should be processed, - e.g. a property name customized with a . - - - - - Initializes a new instance of the class. - - - - - Resolves the specified property name. - - The property name to resolve. - The resolved property name. - - - - A camel case naming strategy. - - - - - Initializes a new instance of the class. - - - A flag indicating whether dictionary keys should be processed. - - - A flag indicating whether explicitly specified property names should be processed, - e.g. a property name customized with a . - - - - - Initializes a new instance of the class. - - - - - Resolves the specified property name. - - The property name to resolve. - The resolved property name. - - - - Resolves member mappings for a type, camel casing property names. - - - - - Initializes a new instance of the class. - - - - - Used by to resolves a for a given . - - - - - Gets a value indicating whether members are being get and set using dynamic code generation. - This value is determined by the runtime permissions available. - - - true if using dynamic code generation; otherwise, false. - - - - - Gets or sets the default members search flags. - - The default members search flags. - - - - Gets or sets a value indicating whether compiler generated members should be serialized. - - - true if serialized compiler generated members; otherwise, false. - - - - - Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. - - - true if the interface will be ignored when serializing and deserializing types; otherwise, false. - - - - - Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. - - - true if the attribute will be ignored when serializing and deserializing types; otherwise, false. - - - - - Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized. - - The naming strategy used to resolve how property names and dictionary keys are serialized. - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - - If set to true the will use a cached shared with other resolvers of the same type. - Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only - happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different - results. When set to false it is highly recommended to reuse instances with the . - - - - - Resolves the contract for a given type. - - The type to resolve a contract for. - The contract for a given type. - - - - Gets the serializable members for the type. - - The type to get serializable members for. - The serializable members for the type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates the constructor parameters. - - The constructor to create properties for. - The type's member properties. - Properties for the given . - - - - Creates a for the given . - - The matching member property. - The constructor parameter. - A created for the given . - - - - Resolves the default for the contract. - - Type of the object. - The contract's default . - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Creates a for the given type. - - Type of the object. - A for the given type. - - - - Determines which contract type is created for the given type. - - Type of the object. - A for the given type. - - - - Creates properties for the given . - - The type to create properties for. - /// The member serialization mode for the type. - Properties for the given . - - - - Creates the used by the serializer to get and set values from a member. - - The member. - The used by the serializer to get and set values from a member. - - - - Creates a for the given . - - The member's parent . - The member to create a for. - A created for the given . - - - - Resolves the name of the property. - - Name of the property. - Resolved name of the property. - - - - Resolves the key of the dictionary. By default is used to resolve dictionary keys. - - Key of the dictionary. - Resolved key of the dictionary. - - - - Gets the resolved name of the property. - - Name of the property. - Name of the property. - - - - The default naming strategy. Property names and dictionary keys are unchanged. - - - - - Resolves the specified property name. - - The property name to resolve. - The resolved property name. - - - - The default serialization binder used when resolving and loading classes from type names. - - - - - When overridden in a derived class, controls the binding of a serialized object to a type. - - Specifies the name of the serialized object. - Specifies the name of the serialized object. - - The type of the object the formatter creates a new instance of. - - - - - When overridden in a derived class, controls the binding of a serialized object to a type. - - The type of the object the formatter creates a new instance of. - Specifies the name of the serialized object. - Specifies the name of the serialized object. - - - - Represents a trace writer that writes to the application's instances. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - - The that will be used to filter the trace messages passed to the writer. - - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Get and set values for a using dynamic methods. - - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Provides information surrounding an error. - - - - - Gets the error. - - The error. - - - - Gets the original object that caused the error. - - The original object that caused the error. - - - - Gets the member that caused the error. - - The member that caused the error. - - - - Gets the path of the JSON location where the error occurred. - - The path of the JSON location where the error occurred. - - - - Gets or sets a value indicating whether this is handled. - - true if handled; otherwise, false. - - - - Provides data for the Error event. - - - - - Gets the current object the error event is being raised against. - - The current object the error event is being raised against. - - - - Gets the error context. - - The error context. - - - - Initializes a new instance of the class. - - The current object. - The error context. - - - - Get and set values for a using dynamic methods. - - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Provides methods to get attributes. - - - - - Returns a collection of all of the attributes, or an empty collection if there are no attributes. - - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. - - The type of the attributes. - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Used by to resolves a for a given . - - - - - - - - - Resolves the contract for a given type. - - The type to resolve a contract for. - The contract for a given type. - - - - A base class for resolving how property names and dictionary keys are serialized. - - - - - A flag indicating whether dictionary keys should be processed. - Defaults to false. - - - - - A flag indicating whether explicitly specified property names, - e.g. a property name customized with a , should be processed. - Defaults to false. - - - - - Gets the serialized name for a given property name. - - The initial property name. - A flag indicating whether the property has had a name explicitly specfied. - The serialized property name. - - - - Gets the serialized key for a given dictionary key. - - The initial dictionary key. - The serialized dictionary key. - - - - Resolves the specified property name. - - The property name to resolve. - The resolved property name. - - - - Used to resolve references when serializing and deserializing JSON by the . - - - - - Resolves a reference to its object. - - The serialization context. - The reference to resolve. - The object that - - - - Gets the reference for the sepecified object. - - The serialization context. - The object to get a reference for. - The reference to the object. - - - - Determines whether the specified object is referenced. - - The serialization context. - The object to test for a reference. - - true if the specified object is referenced; otherwise, false. - - - - - Adds a reference to the specified object. - - The serialization context. - The reference. - The object to reference. - - - - Represents a trace writer. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - The that will be used to filter the trace messages passed to the writer. - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Provides methods to get and set values. - - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Contract details for a used by the . - - - - - Gets the of the collection items. - - The of the collection items. - - - - Gets a value indicating whether the collection type is a multidimensional array. - - true if the collection type is a multidimensional array; otherwise, false. - - - - Gets or sets the function used to create the object. When set this function will override . - - The function used to create the object. - - - - Gets a value indicating whether the creator has a parameter with the collection values. - - true if the creator has a parameter with the collection values; otherwise, false. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Gets or sets the default collection items . - - The converter. - - - - Gets or sets a value indicating whether the collection items preserve object references. - - true if collection items preserve object references; otherwise, false. - - - - Gets or sets the collection item reference loop handling. - - The reference loop handling. - - - - Gets or sets the collection item type name handling. - - The type name handling. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Handles serialization callback events. - - The object that raised the callback event. - The streaming context. - - - - Handles serialization error callback events. - - The object that raised the callback event. - The streaming context. - The error context. - - - - Sets extension data for an object during deserialization. - - The object to set extension data on. - The extension data key. - The extension data value. - - - - Gets extension data for an object during serialization. - - The object to set extension data on. - - - - Contract details for a used by the . - - - - - Gets the underlying type for the contract. - - The underlying type for the contract. - - - - Gets or sets the type created during deserialization. - - The type created during deserialization. - - - - Gets or sets whether this type contract is serialized as a reference. - - Whether this type contract is serialized as a reference. - - - - Gets or sets the default for this contract. - - The converter. - - - - Gets or sets all methods called immediately after deserialization of the object. - - The methods called immediately after deserialization of the object. - - - - Gets or sets all methods called during deserialization of the object. - - The methods called during deserialization of the object. - - - - Gets or sets all methods called after serialization of the object graph. - - The methods called after serialization of the object graph. - - - - Gets or sets all methods called before serialization of the object. - - The methods called before serialization of the object. - - - - Gets or sets all method called when an error is thrown during the serialization of the object. - - The methods called when an error is thrown during the serialization of the object. - - - - Gets or sets the method called immediately after deserialization of the object. - - The method called immediately after deserialization of the object. - - - - Gets or sets the method called during deserialization of the object. - - The method called during deserialization of the object. - - - - Gets or sets the method called after serialization of the object graph. - - The method called after serialization of the object graph. - - - - Gets or sets the method called before serialization of the object. - - The method called before serialization of the object. - - - - Gets or sets the method called when an error is thrown during the serialization of the object. - - The method called when an error is thrown during the serialization of the object. - - - - Gets or sets the default creator method used to create the object. - - The default creator method used to create the object. - - - - Gets or sets a value indicating whether the default creator is non public. - - true if the default object creator is non-public; otherwise, false. - - - - Contract details for a used by the . - - - - - Gets or sets the property name resolver. - - The property name resolver. - - - - Gets or sets the dictionary key resolver. - - The dictionary key resolver. - - - - Gets the of the dictionary keys. - - The of the dictionary keys. - - - - Gets the of the dictionary values. - - The of the dictionary values. - - - - Gets or sets the function used to create the object. When set this function will override . - - The function used to create the object. - - - - Gets a value indicating whether the creator has a parameter with the dictionary values. - - true if the creator has a parameter with the dictionary values; otherwise, false. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Gets the object's properties. - - The object's properties. - - - - Gets or sets the property name resolver. - - The property name resolver. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Gets or sets the ISerializable object constructor. - - The ISerializable object constructor. - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Gets or sets the object member serialization. - - The member object serialization. - - - - Gets or sets a value that indicates whether the object's properties are required. - - - A value indicating whether the object's properties are required. - - - - - Gets the object's properties. - - The object's properties. - - - - Gets the constructor parameters required for any non-default constructor - - - - - Gets a collection of instances that define the parameters used with . - - - - - Gets or sets the override constructor used to create the object. - This is set when a constructor is marked up using the - JsonConstructor attribute. - - The override constructor. - - - - Gets or sets the parametrized constructor used to create the object. - - The parametrized constructor. - - - - Gets or sets the function used to create the object. When set this function will override . - This function is called with a collection of arguments which are defined by the collection. - - The function used to create the object. - - - - Gets or sets the extension data setter. - - - - - Gets or sets the extension data getter. - - - - - Gets or sets the extension data value type. - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Maps a JSON property to a .NET member or constructor parameter. - - - - - Gets or sets the name of the property. - - The name of the property. - - - - Gets or sets the type that declared this property. - - The type that declared this property. - - - - Gets or sets the order of serialization of a member. - - The numeric order of serialization. - - - - Gets or sets the name of the underlying member or parameter. - - The name of the underlying member or parameter. - - - - Gets the that will get and set the during serialization. - - The that will get and set the during serialization. - - - - Gets or sets the for this property. - - The for this property. - - - - Gets or sets the type of the property. - - The type of the property. - - - - Gets or sets the for the property. - If set this converter takes presidence over the contract converter for the property type. - - The converter. - - - - Gets or sets the member converter. - - The member converter. - - - - Gets or sets a value indicating whether this is ignored. - - true if ignored; otherwise, false. - - - - Gets or sets a value indicating whether this is readable. - - true if readable; otherwise, false. - - - - Gets or sets a value indicating whether this is writable. - - true if writable; otherwise, false. - - - - Gets or sets a value indicating whether this has a member attribute. - - true if has a member attribute; otherwise, false. - - - - Gets the default value. - - The default value. - - - - Gets or sets a value indicating whether this is required. - - A value indicating whether this is required. - - - - Gets or sets a value indicating whether this property preserves object references. - - - true if this instance is reference; otherwise, false. - - - - - Gets or sets the property null value handling. - - The null value handling. - - - - Gets or sets the property default value handling. - - The default value handling. - - - - Gets or sets the property reference loop handling. - - The reference loop handling. - - - - Gets or sets the property object creation handling. - - The object creation handling. - - - - Gets or sets or sets the type name handling. - - The type name handling. - - - - Gets or sets a predicate used to determine whether the property should be serialize. - - A predicate used to determine whether the property should be serialize. - - - - Gets or sets a predicate used to determine whether the property should be deserialized. - - A predicate used to determine whether the property should be deserialized. - - - - Gets or sets a predicate used to determine whether the property should be serialized. - - A predicate used to determine whether the property should be serialized. - - - - Gets or sets an action used to set whether the property has been deserialized. - - An action used to set whether the property has been deserialized. - - - - Returns a that represents this instance. - - - A that represents this instance. - - - - - Gets or sets the converter used when serializing the property's collection items. - - The collection's items converter. - - - - Gets or sets whether this property's collection items are serialized as a reference. - - Whether this property's collection items are serialized as a reference. - - - - Gets or sets the the type name handling used when serializing the property's collection items. - - The collection's items type name handling. - - - - Gets or sets the the reference loop handling used when serializing the property's collection items. - - The collection's items reference loop handling. - - - - A collection of objects. - - - - - Initializes a new instance of the class. - - The type. - - - - When implemented in a derived class, extracts the key from the specified element. - - The element from which to extract the key. - The key for the specified element. - - - - Adds a object. - - The property to add to the collection. - - - - Gets the closest matching object. - First attempts to get an exact case match of propertyName and then - a case insensitive match. - - Name of the property. - A matching property if found. - - - - Gets a property by property name. - - The name of the property to get. - Type property name string comparison. - A matching property if found. - - - - Contract details for a used by the . - - - - - Initializes a new instance of the class. - - The underlying type for the contract. - - - - Lookup and create an instance of the JsonConverter type described by the argument. - - The JsonConverter type to create. - Optional arguments to pass to an initializing constructor of the JsonConverter. - If null, the default constructor is used. - - - - Represents a trace writer that writes to memory. When the trace message limit is - reached then old trace messages will be removed as new messages are added. - - - - - Gets the that will be used to filter the trace messages passed to the writer. - For example a filter level of Info will exclude Verbose messages and include Info, - Warning and Error messages. - - - The that will be used to filter the trace messages passed to the writer. - - - - - Initializes a new instance of the class. - - - - - Writes the specified trace level, message and optional exception. - - The at which to write this trace. - The trace message. - The trace exception. This parameter is optional. - - - - Returns an enumeration of the most recent trace messages. - - An enumeration of the most recent trace messages. - - - - Returns a of the most recent trace messages. - - - A of the most recent trace messages. - - - - - Represents a method that constructs an object. - - The object type to create. - - - - When applied to a method, specifies that the method is called when an error occurs serializing an object. - - - - - Provides methods to get attributes from a , , or . - - - - - Initializes a new instance of the class. - - The instance to get attributes for. This parameter should be a , , or . - - - - Returns a collection of all of the attributes, or an empty collection if there are no attributes. - - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. - - The type of the attributes. - When true, look up the hierarchy chain for the inherited custom attribute. - A collection of s, or an empty collection. - - - - Get and set values for a using reflection. - - - - - Initializes a new instance of the class. - - The member info. - - - - Sets the value. - - The target to set the value on. - The value to set on the target. - - - - Gets the value. - - The target to get the value from. - The value. - - - - Specifies how strings are escaped when writing JSON text. - - - - - Only control characters (e.g. newline) are escaped. - - - - - All non-ASCII and control characters (e.g. newline) are escaped. - - - - - HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. - - - - - Specifies type name handling options for the . - - - should be used with caution when your application deserializes JSON from an external source. - Incoming types should be validated with a custom - when deserializing with a value other than TypeNameHandling.None. - - - - - Do not include the .NET type name when serializing types. - - - - - Include the .NET type name when serializing into a JSON object structure. - - - - - Include the .NET type name when serializing into a JSON array structure. - - - - - Always include the .NET type name when serializing. - - - - - Include the .NET type name when the type of the object being serialized is not the same as its declared type. - - - - - Determines whether the collection is null or empty. - - The collection. - - true if the collection is null or empty; otherwise, false. - - - - - Adds the elements of the specified collection to the specified generic IList. - - The list to add to. - The collection of elements to add. - - - - Converts the value to the specified type. If the value is unable to be converted, the - value is checked whether it assignable to the specified type. - - The value to convert. - The culture to use when converting. - The type to convert or cast the value to. - - The converted type. If conversion was unsuccessful, the initial value - is returned if assignable to the target type. - - - - - Helper method for generating a MetaObject which calls a - specific method on Dynamic that returns a result - - - - - Helper method for generating a MetaObject which calls a - specific method on Dynamic, but uses one of the arguments for - the result. - - - - - Helper method for generating a MetaObject which calls a - specific method on Dynamic, but uses one of the arguments for - the result. - - - - - Returns a Restrictions object which includes our current restrictions merged - with a restriction limiting our type - - - - - Gets a dictionary of the names and values of an Enum type. - - - - - - Gets a dictionary of the names and values of an Enum type. - - The enum type to get names and values for. - - - - - Gets the type of the typed collection's items. - - The type. - The type of the typed collection's items. - - - - Gets the member's underlying type. - - The member. - The underlying type of the member. - - - - Determines whether the member is an indexed property. - - The member. - - true if the member is an indexed property; otherwise, false. - - - - - Determines whether the property is an indexed property. - - The property. - - true if the property is an indexed property; otherwise, false. - - - - - Gets the member's value on the object. - - The member. - The target object. - The member's value on the object. - - - - Sets the member's value on the target object. - - The member. - The target. - The value. - - - - Determines whether the specified MemberInfo can be read. - - The MemberInfo to determine whether can be read. - /// if set to true then allow the member to be gotten non-publicly. - - true if the specified MemberInfo can be read; otherwise, false. - - - - - Determines whether the specified MemberInfo can be set. - - The MemberInfo to determine whether can be set. - if set to true then allow the member to be set non-publicly. - if set to true then allow the member to be set if read-only. - - true if the specified MemberInfo can be set; otherwise, false. - - - - - Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. - - - - - Determines whether the string is all white space. Empty string will return false. - - The string to test whether it is all white space. - - true if the string is all white space; otherwise, false. - - - - - Specifies the state of the . - - - - - An exception has been thrown, which has left the in an invalid state. - You may call the method to put the in the Closed state. - Any other method calls results in an being thrown. - - - - - The method has been called. - - - - - An object is being written. - - - - - A array is being written. - - - - - A constructor is being written. - - - - - A property is being written. - - - - - A write method has not been called. - - - - diff --git a/References/DESKTOPCLR45/System.Reactive.Core.XML b/References/DESKTOPCLR45/System.Reactive.Core.XML deleted file mode 100644 index 519b035..0000000 --- a/References/DESKTOPCLR45/System.Reactive.Core.XML +++ /dev/null @@ -1,2944 +0,0 @@ - - - - System.Reactive.Core - - - - - The System.Reactive.PlatformServices namespace contains interfaces and classes used by the runtime infrastructure of Reactive Extensions. - Those are not intended to be used directly from user code and are subject to change in future releases of the product. - - - - - (Infrastructure) Services to rethrow exceptions. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Rethrows the specified exception. - - Exception to rethrow. - - - - (Infrastructure) Provides access to the host's lifecycle management services. - - - - - Event that gets raised when the host suspends the application. - - - - - Event that gets raised when the host resumes the application. - - - - - Adds a reference to the host lifecycle manager, causing it to be sending notifications. - - - - - Removes a reference to the host lifecycle manager, causing it to stop sending notifications - if the removed reference was the last one. - - - - - (Infrastructure) Provides notifications about the host's lifecycle events. - - - - - Event that gets raised when the host suspends. - - - - - Event that gets raised when the host resumes. - - - - - (Infrastructure) Event arguments for host suspension events. - - - - - (Infrastructure) Event arguments for host resumption events. - - - - - (Infrastructure) Interface for enlightenment providers. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - (Infastructure) Tries to gets the specified service. - - Service type. - Optional set of arguments. - Service instance or null if not found. - - - - (Infrastructure) Provider for platform-specific framework enlightenments. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - - - - - (Infrastructure) Gets the current enlightenment provider. If none is loaded yet, accessing this property triggers provider resolution. - - - This member is used by the Rx infrastructure and not meant for public consumption or implementation. - - - - - (Infrastructure) Provides access to local system clock services. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Gets the local system clock time. - - - - - Adds a reference to the system clock monitor, causing it to be sending notifications. - - Thrown when the system doesn't support sending clock change notifications. - - - - Removes a reference to the system clock monitor, causing it to stop sending notifications - if the removed reference was the last one. - - - - - (Infrastructure) Provides access to the local system clock. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Gets the current time. - - - - - (Infrastructure) Provides a mechanism to notify local schedulers about system clock changes. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Event that gets raised when a system clock change is detected. - - - - - (Infrastructure) Event arguments for system clock change notifications. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Creates a new system clock notification object with unknown old and new times. - - - - - Creates a new system clock notification object with the specified old and new times. - - Time before the system clock changed, or DateTimeOffset.MinValue if not known. - Time after the system clock changed, or DateTimeOffset.MaxValue if not known. - - - - Gets the time before the system clock changed, or DateTimeOffset.MinValue if not known. - - - - - Gets the time after the system clock changed, or DateTimeOffset.MaxValue if not known. - - - - - (Infrastructure) Provides access to the local system clock. - - - - - Gets the current time. - - - - - (Infrastructure) Monitors for system clock changes based on a periodic timer. - - - - - Creates a new monitor for system clock changes with the specified polling frequency. - - Polling frequency for system clock changes. - - - - Event that gets raised when a system clock change is detected. - - - - - (Infrastructure) Services to leverage evolving TPL Task APIs. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Attempts to transition the underlying Task{T} into the Canceled state. - - Type of the result of the underlying task. - Task completion source whose underlying task to transition into the Canceled state. - Cancellation token that triggered the cancellation. - True if the operation was successful; false if the operation was unsuccessful or the object has already been disposed. - - - - Provides a set of static methods for creating observers. - - - - - Creates an observer from a notification callback. - - The type of the elements received by the observer. - Action that handles a notification. - The observer object that invokes the specified handler using a notification corresponding to each message it receives. - is null. - - - - Creates a notification callback from an observer. - - The type of the elements received by the observer. - Observer object. - The action that forwards its input notification to the underlying observer. - is null. - - - - Creates an observer from the specified OnNext action. - - The type of the elements received by the observer. - Observer's OnNext action implementation. - The observer object implemented using the given actions. - is null. - - - - Creates an observer from the specified OnNext and OnError actions. - - The type of the elements received by the observer. - Observer's OnNext action implementation. - Observer's OnError action implementation. - The observer object implemented using the given actions. - or is null. - - - - Creates an observer from the specified OnNext and OnCompleted actions. - - The type of the elements received by the observer. - Observer's OnNext action implementation. - Observer's OnCompleted action implementation. - The observer object implemented using the given actions. - or is null. - - - - Creates an observer from the specified OnNext, OnError, and OnCompleted actions. - - The type of the elements received by the observer. - Observer's OnNext action implementation. - Observer's OnError action implementation. - Observer's OnCompleted action implementation. - The observer object implemented using the given actions. - or or is null. - - - - Hides the identity of an observer. - - The type of the elements received by the source observer. - An observer whose identity to hide. - An observer that hides the identity of the specified observer. - is null. - - - - Checks access to the observer for grammar violations. This includes checking for multiple OnError or OnCompleted calls, as well as reentrancy in any of the observer methods. - If a violation is detected, an InvalidOperationException is thrown from the offending observer method call. - - The type of the elements received by the source observer. - The observer whose callback invocations should be checked for grammar violations. - An observer that checks callbacks invocations against the observer grammar and, if the checks pass, forwards those to the specified observer. - is null. - - - - Synchronizes access to the observer such that its callback methods cannot be called concurrently from multiple threads. This overload is useful when coordinating access to an observer. - Notice reentrant observer callbacks on the same thread are still possible. - - The type of the elements received by the source observer. - The observer whose callbacks should be synchronized. - An observer that delivers callbacks to the specified observer in a synchronized manner. - is null. - - Because a Monitor is used to perform the synchronization, there's no protection against reentrancy from the same thread. - Hence, overlapped observer callbacks are still possible, which is invalid behavior according to the observer grammar. In order to protect against this behavior as - well, use the overload, passing true for the second parameter. - - - - - Synchronizes access to the observer such that its callback methods cannot be called concurrently. This overload is useful when coordinating access to an observer. - The parameter configures the type of lock used for synchronization. - - The type of the elements received by the source observer. - The observer whose callbacks should be synchronized. - If set to true, reentrant observer callbacks will be queued up and get delivered to the observer in a sequential manner. - An observer that delivers callbacks to the specified observer in a synchronized manner. - is null. - - When the parameter is set to false, behavior is identical to the overload which uses - a Monitor for synchronization. When the parameter is set to true, an - is used to queue up callbacks to the specified observer if a reentrant call is made. - - - - - Synchronizes access to the observer such that its callback methods cannot be called concurrently by multiple threads, using the specified gate object for use by a Monitor-based lock. - This overload is useful when coordinating multiple observers that access shared state by synchronizing on a common gate object. - Notice reentrant observer callbacks on the same thread are still possible. - - The type of the elements received by the source observer. - The observer whose callbacks should be synchronized. - Gate object to synchronize each observer call on. - An observer that delivers callbacks to the specified observer in a synchronized manner. - or is null. - - Because a Monitor is used to perform the synchronization, there's no protection against reentrancy from the same thread. - Hence, overlapped observer callbacks are still possible, which is invalid behavior according to the observer grammar. In order to protect against this behavior as - well, use the overload. - - - - - Synchronizes access to the observer such that its callback methods cannot be called concurrently, using the specified asynchronous lock to protect against concurrent and reentrant access. - This overload is useful when coordinating multiple observers that access shared state by synchronizing on a common asynchronous lock. - - The type of the elements received by the source observer. - The observer whose callbacks should be synchronized. - Gate object to synchronize each observer call on. - An observer that delivers callbacks to the specified observer in a synchronized manner. - or is null. - - - - Schedules the invocation of observer methods on the given scheduler. - - The type of the elements received by the source observer. - The observer to schedule messages for. - Scheduler to schedule observer messages on. - Observer whose messages are scheduled on the given scheduler. - or is null. - - - - Schedules the invocation of observer methods on the given synchonization context. - - The type of the elements received by the source observer. - The observer to schedule messages for. - Synchonization context to schedule observer messages on. - Observer whose messages are scheduled on the given synchonization context. - or is null. - - - - Converts an observer to a progress object. - - The type of the progress objects received by the source observer. - The observer to convert. - Progress object whose Report messages correspond to the observer's OnNext messages. - is null. - - - - Converts an observer to a progress object, using the specified scheduler to invoke the progress reporting method. - - The type of the progress objects received by the source observer. - The observer to convert. - Scheduler to report progress on. - Progress object whose Report messages correspond to the observer's OnNext messages. - or is null. - - - - Converts a progress object to an observer. - - The type of the progress objects received by the progress reporter. - The progress object to convert. - Observer whose OnNext messages correspond to the progress object's Report messages. - is null. - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - Looks up a localized string similar to Using the Scheduler.{0} property is no longer supported due to refactoring of the API surface and elimination of platform-specific dependencies. Please include System.Reactive.PlatformServices for your target platform and use the {0}Scheduler type instead.. - - - - - Looks up a localized string similar to OnCompleted notification doesn't have a value.. - - - - - Looks up a localized string similar to Disposable has already been assigned.. - - - - - Looks up a localized string similar to Failed to start monitoring system clock changes.. - - - - - Looks up a localized string similar to Heap is empty.. - - - - - Looks up a localized string similar to Reentrancy has been detected.. - - - - - Looks up a localized string similar to Observer has already terminated.. - - - - - Looks up a localized string similar to This scheduler operation has already been awaited.. - - - - - Looks up a localized string similar to Disposables collection can not contain null values.. - - - - - Class to create an IObservable<T> instance from a delegate-based implementation of the Subscribe method. - - The type of the elements in the sequence. - - - - Creates an observable sequence object from the specified subscription function. - - Subscribe method implementation. - is null. - - - - Calls the subscription function that was supplied to the constructor. - - Observer to send notifications to. - Disposable object representing an observer's subscription to the observable sequence. - - - - Class to create an IObserver<T> instance from delegate-based implementations of the On* methods. - - The type of the elements in the sequence. - - - - Creates an observer from the specified OnNext, OnError, and OnCompleted actions. - - Observer's OnNext action implementation. - Observer's OnError action implementation. - Observer's OnCompleted action implementation. - or or is null. - - - - Creates an observer from the specified OnNext action. - - Observer's OnNext action implementation. - is null. - - - - Creates an observer from the specified OnNext and OnError actions. - - Observer's OnNext action implementation. - Observer's OnError action implementation. - or is null. - - - - Creates an observer from the specified OnNext and OnCompleted actions. - - Observer's OnNext action implementation. - Observer's OnCompleted action implementation. - or is null. - - - - Calls the onNext action. - - Next element in the sequence. - - - - Calls the onError action. - - The error that has occurred. - - - - Calls the onCompleted action. - - - - - This class fuses logic from ObserverBase, AnonymousObserver, and SafeObserver into one class. When an observer - needs to be safeguarded, an instance of this type can be created by SafeObserver.Create when it detects its - input is an AnonymousObserver, which is commonly used by end users when using the Subscribe extension methods - that accept delegates for the On* handlers. By doing the fusion, we make the call stack depth shorter which - helps debugging and some performance. - - - - - Indicates the type of a notification. - - - - - Represents an OnNext notification. - - - - - Represents an OnError notification. - - - - - Represents an OnCompleted notification. - - - - - Represents a notification to an observer. - - The type of the elements received by the observer. - - - - Default constructor used by derived types. - - - - - Returns the value of an OnNext notification or throws an exception. - - - - - Returns a value that indicates whether the notification has a value. - - - - - Returns the exception of an OnError notification or returns null. - - - - - Gets the kind of notification that is represented. - - - - - Represents an OnNext notification to an observer. - - - - - Constructs a notification of a new value. - - - - - Returns the value of an OnNext notification. - - - - - Returns null. - - - - - Returns true. - - - - - Returns NotificationKind.OnNext. - - - - - Returns the hash code for this instance. - - - - - Indicates whether this instance and a specified object are equal. - - - - - Returns a string representation of this instance. - - - - - Invokes the observer's method corresponding to the notification. - - Observer to invoke the notification on. - - - - Invokes the observer's method corresponding to the notification and returns the produced result. - - Observer to invoke the notification on. - Result produced by the observation. - - - - Invokes the delegate corresponding to the notification. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - - - - Invokes the delegate corresponding to the notification and returns the produced result. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - Result produced by the observation. - - - - Represents an OnError notification to an observer. - - - - - Constructs a notification of an exception. - - - - - Throws the exception. - - - - - Returns the exception. - - - - - Returns false. - - - - - Returns NotificationKind.OnError. - - - - - Returns the hash code for this instance. - - - - - Indicates whether this instance and other are equal. - - - - - Returns a string representation of this instance. - - - - - Invokes the observer's method corresponding to the notification. - - Observer to invoke the notification on. - - - - Invokes the observer's method corresponding to the notification and returns the produced result. - - Observer to invoke the notification on. - Result produced by the observation. - - - - Invokes the delegate corresponding to the notification. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - - - - Invokes the delegate corresponding to the notification and returns the produced result. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - Result produced by the observation. - - - - Represents an OnCompleted notification to an observer. - - - - - Constructs a notification of the end of a sequence. - - - - - Throws an InvalidOperationException. - - - - - Returns null. - - - - - Returns false. - - - - - Returns NotificationKind.OnCompleted. - - - - - Returns the hash code for this instance. - - - - - Indicates whether this instance and other are equal. - - - - - Returns a string representation of this instance. - - - - - Invokes the observer's method corresponding to the notification. - - Observer to invoke the notification on. - - - - Invokes the observer's method corresponding to the notification and returns the produced result. - - Observer to invoke the notification on. - Result produced by the observation. - - - - Invokes the delegate corresponding to the notification. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - - - - Invokes the delegate corresponding to the notification and returns the produced result. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - Result produced by the observation. - - - - Determines whether the current Notification<T> object has the same observer message payload as a specified Notification<T> value. - - An object to compare to the current Notification<T> object. - true if both Notification<T> objects have the same observer message payload; otherwise, false. - - Equality of Notification<T> objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any). - This means two Notification<T> objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method. - In case one wants to determine whether two Notification<T> objects represent the same observer method call, use Object.ReferenceEquals identity equality instead. - - - - - Determines whether the two specified Notification<T> objects have the same observer message payload. - - The first Notification<T> to compare, or null. - The second Notification<T> to compare, or null. - true if the first Notification<T> value has the same observer message payload as the second Notification<T> value; otherwise, false. - - Equality of Notification<T> objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any). - This means two Notification<T> objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method. - In case one wants to determine whether two Notification<T> objects represent the same observer method call, use Object.ReferenceEquals identity equality instead. - - - - - Determines whether the two specified Notification<T> objects have a different observer message payload. - - The first Notification<T> to compare, or null. - The second Notification<T> to compare, or null. - true if the first Notification<T> value has a different observer message payload as the second Notification<T> value; otherwise, false. - - Equality of Notification<T> objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any). - This means two Notification<T> objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method. - In case one wants to determine whether two Notification<T> objects represent a different observer method call, use Object.ReferenceEquals identity equality instead. - - - - - Determines whether the specified System.Object is equal to the current Notification<T>. - - The System.Object to compare with the current Notification<T>. - true if the specified System.Object is equal to the current Notification<T>; otherwise, false. - - Equality of Notification<T> objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any). - This means two Notification<T> objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method. - In case one wants to determine whether two Notification<T> objects represent the same observer method call, use Object.ReferenceEquals identity equality instead. - - - - - Invokes the observer's method corresponding to the notification. - - Observer to invoke the notification on. - - - - Invokes the observer's method corresponding to the notification and returns the produced result. - - The type of the result returned from the observer's notification handlers. - Observer to invoke the notification on. - Result produced by the observation. - - - - Invokes the delegate corresponding to the notification. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - - - - Invokes the delegate corresponding to the notification and returns the produced result. - - The type of the result returned from the notification handler delegates. - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - Result produced by the observation. - - - - Returns an observable sequence with a single notification, using the immediate scheduler. - - The observable sequence that surfaces the behavior of the notification upon subscription. - - - - Returns an observable sequence with a single notification. - - Scheduler to send out the notification calls on. - The observable sequence that surfaces the behavior of the notification upon subscription. - - - - Provides a set of static methods for constructing notifications. - - - - - Creates an object that represents an OnNext notification to an observer. - - The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence. - The value contained in the notification. - The OnNext notification containing the value. - - - - Creates an object that represents an OnError notification to an observer. - - The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence. - The exception contained in the notification. - The OnError notification containing the exception. - is null. - - - - Creates an object that represents an OnCompleted notification to an observer. - - The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence. - The OnCompleted notification. - - - - Abstract base class for implementations of the IObservable<T> interface. - - - If you don't need a named type to create an observable sequence (i.e. you rather need - an instance rather than a reusable type), use the Observable.Create method to create - an observable sequence with specified subscription behavior. - - The type of the elements in the sequence. - - - - Subscribes the given observer to the observable sequence. - - Observer that will receive notifications from the observable sequence. - Disposable object representing an observer's subscription to the observable sequence. - is null. - - - - Implement this method with the core subscription logic for the observable sequence. - - Observer to send notifications to. - Disposable object representing an observer's subscription to the observable sequence. - - - - Abstract base class for implementations of the IObserver<T> interface. - - This base class enforces the grammar of observers where OnError and OnCompleted are terminal messages. - The type of the elements in the sequence. - - - - Creates a new observer in a non-stopped state. - - - - - Notifies the observer of a new element in the sequence. - - Next element in the sequence. - - - - Implement this method to react to the receival of a new element in the sequence. - - Next element in the sequence. - This method only gets called when the observer hasn't stopped yet. - - - - Notifies the observer that an exception has occurred. - - The error that has occurred. - is null. - - - - Implement this method to react to the occurrence of an exception. - - The error that has occurred. - This method only gets called when the observer hasn't stopped yet, and causes the observer to stop. - - - - Notifies the observer of the end of the sequence. - - - - - Implement this method to react to the end of the sequence. - - This method only gets called when the observer hasn't stopped yet, and causes the observer to stop. - - - - Disposes the observer, causing it to transition to the stopped state. - - - - - Core implementation of IDisposable. - - true if the Dispose call was triggered by the IDisposable.Dispose method; false if it was triggered by the finalizer. - - - - Represents a type with a single value. This type is often used to denote the successful completion of a void-returning method (C#) or a Sub procedure (Visual Basic). - - - - - Determines whether the specified Unit values is equal to the current Unit. Because Unit has a single value, this always returns true. - - An object to compare to the current Unit value. - Because Unit has a single value, this always returns true. - - - - Determines whether the specified System.Object is equal to the current Unit. - - The System.Object to compare with the current Unit. - true if the specified System.Object is a Unit value; otherwise, false. - - - - Returns the hash code for the current Unit value. - - A hash code for the current Unit value. - - - - Returns a string representation of the current Unit value. - - String representation of the current Unit value. - - - - Determines whether the two specified Unit values are equal. Because Unit has a single value, this always returns true. - - The first Unit value to compare. - The second Unit value to compare. - Because Unit has a single value, this always returns true. - - - - Determines whether the two specified Unit values are not equal. Because Unit has a single value, this always returns false. - - The first Unit value to compare. - The second Unit value to compare. - Because Unit has a single value, this always returns false. - - - - Gets the single unit value. - - - - - Asynchronous lock. - - - - - Queues the action for execution. If the caller acquires the lock and becomes the owner, - the queue is processed. If the lock is already owned, the action is queued and will get - processed by the owner. - - Action to queue for execution. - is null. - - - - Clears the work items in the queue and drops further work being queued. - - - - - (Infrastructure) Concurrency abstraction layer. - - - - - Gets the current CAL. If no CAL has been set yet, it will be initialized to the default. - - - - - (Infrastructure) Concurrency abstraction layer interface. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Queues a method for execution at the specified relative time. - - Method to execute. - State to pass to the method. - Time to execute the method on. - Disposable object that can be used to stop the timer. - - - - Queues a method for periodic execution based on the specified period. - - Method to execute; should be safe for reentrancy. - Period for running the method periodically. - Disposable object that can be used to stop the timer. - - - - Queues a method for execution. - - Method to execute. - State to pass to the method. - Disposable object that can be used to cancel the queued method. - - - - Blocking sleep operation. - - Time to sleep. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Gets whether long-running scheduling is supported. - - - - - Starts a new long-running thread. - - Method to execute. - State to pass to the method. - - - - Represents an object that schedules units of work on the current thread. - - Singleton instance of this type exposed through this static property. - - - - Gets the singleton instance of the current thread scheduler. - - - - - Gets a value that indicates whether the caller must call a Schedule method. - - - - - Gets a value that indicates whether the caller must call a Schedule method. - - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Represents an object that schedules units of work on the platform's default scheduler. - - Singleton instance of this type exposed through this static property. - - - - Gets the singleton instance of the default scheduler. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime, using a System.Threading.Timer object. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a periodic piece of work, using a System.Threading.Timer object. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is less than TimeSpan.Zero. - is null. - - - - Discovers scheduler services by interface type. - - Scheduler service interface type to discover. - Object implementing the requested service, if available; null otherwise. - - - - Represents an object that schedules units of work to run immediately on the current thread. - - Singleton instance of this type exposed through this static property. - - - - Gets the singleton instance of the immediate scheduler. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Abstract base class for machine-local schedulers, using the local system clock for time-based operations. - - - - - Gets the scheduler's notion of current time. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - Platform-specific scheduler implementations should reimplement IStopwatchProvider to provide a more - efficient IStopwatch implementation (if available). - - - - - Discovers scheduler services by interface type. The base class implementation returns - requested services for each scheduler interface implemented by the derived class. For - more control over service discovery, derived types can override this method. - - Scheduler service interface type to discover. - Object implementing the requested service, if available; null otherwise. - - - - Gate to protect local scheduler queues. - - - - - Gate to protect queues and to synchronize scheduling decisions and system clock - change management. - - - - - Long term work queue. Contains work that's due beyond SHORTTERM, computed at the - time of enqueueing. - - - - - Disposable resource for the long term timer that will reevaluate and dispatch the - first item in the long term queue. A serial disposable is used to make "dispose - current and assign new" logic easier. The disposable itself is never disposed. - - - - - Item at the head of the long term queue for which the current long term timer is - running. Used to detect changes in the queue and decide whether we should replace - or can continue using the current timer (because no earlier long term work was - added to the queue). - - - - - Short term work queue. Contains work that's due soon, computed at the time of - enqueueing or upon reevaluation of the long term queue causing migration of work - items. This queue is kept in order to be able to relocate short term items back - to the long term queue in case a system clock change occurs. - - - - - Set of disposable handles to all of the current short term work Schedule calls, - allowing those to be cancelled upon a system clock change. - - - - - Threshold where an item is considered to be short term work or gets moved from - long term to short term. - - - - - Maximum error ratio for timer drift. We've seen machines with 10s drift on a - daily basis, which is in the order 10E-4, so we allow for extra margin here. - This value is used to calculate early arrival for the long term queue timer - that will reevaluate work for the short term queue. - - Example: -------------------------------...---------------------*-----$ - ^ ^ - | | - early due - 0.999 1.0 - - We also make the gap between early and due at least LONGTOSHORT so we have - enough time to transition work to short term and as a courtesy to the - destination scheduler to manage its queues etc. - - - - - Minimum threshold for the long term timer to fire before the queue is reevaluated - for short term work. This value is chosen to be less than SHORTTERM in order to - ensure the timer fires and has work to transition to the short term queue. - - - - - Threshold used to determine when a short term timer has fired too early compared - to the absolute due time. This provides a last chance protection against early - completion of scheduled work, which can happen in case of time adjustment in the - operating system (cf. GetSystemTimeAdjustment). - - - - - Longest interval supported by timers in the BCL. - - - - - Creates a new local scheduler. - - - - - Enqueues absolute time scheduled work in the timer queue or the short term work list. - - State to pass to the action. - Absolute time to run the work on. The timer queue is responsible to execute the work close to the specified time, also accounting for system clock changes. - Action to run, potentially recursing into the scheduler. - Disposable object to prevent the work from running. - - - - Schedule work that's due in the short term. This leads to relative scheduling calls to the - underlying scheduler for short TimeSpan values. If the system clock changes in the meantime, - the short term work is attempted to be cancelled and reevaluated. - - Work item to schedule in the short term. The caller is responsible to determine the work is indeed short term. - - - - Callback to process the next short term work item. - - Recursive scheduler supplied by the underlying scheduler. - Disposable used to identify the work the timer was triggered for (see code for usage). - Empty disposable. Recursive work cancellation is wired through the original WorkItem. - - - - Schedule work that's due on the long term. This leads to the work being queued up for - eventual transitioning to the short term work list. - - Work item to schedule on the long term. The caller is responsible to determine the work is indeed long term. - - - - Updates the long term timer which is responsible to transition work from the head of the - long term queue to the short term work list. - - Should be called under the scheduler lock. - - - - Evaluates the long term queue, transitioning short term work to the short term list, - and adjusting the new long term processing timer accordingly. - - Ignored. - - - - Callback invoked when a system clock change is observed in order to adjust and reevaluate - the internal scheduling queues. - - Currently not used. - Currently not used. - - - - Represents a work item in the absolute time scheduler. - - - This type is very similar to ScheduledItem, but we need a different Invoke signature to allow customization - of the target scheduler (e.g. when called in a recursive scheduling context, see ExecuteNextShortTermWorkItem). - - - - - Represents a work item that closes over scheduler invocation state. Subtyping is - used to have a common type for the scheduler queues. - - - - - Abstract base class for scheduled work items. - - Absolute time representation type. - - - - Creates a new scheduled work item to run at the specified time. - - Absolute time at which the work item has to be executed. - Comparer used to compare work items based on their scheduled time. - is null. - - - - Gets the absolute time at which the item is due for invocation. - - - - - Invokes the work item. - - - - - Implement this method to perform the work item invocation, returning a disposable object for deep cancellation. - - Disposable object used to cancel the work item and/or derived work items. - - - - Compares the work item with another work item based on absolute time values. - - Work item to compare the current work item to. - Relative ordering between this and the specified work item. - The inequality operators are overloaded to provide results consistent with the IComparable implementation. Equality operators implement traditional reference equality semantics. - - - - Determines whether one specified ScheduledItem<TAbsolute> object is due before a second specified ScheduledItem<TAbsolute> object. - - The first object to compare. - The second object to compare. - true if the DueTime value of left is earlier than the DueTime value of right; otherwise, false. - This operator provides results consistent with the IComparable implementation. - - - - Determines whether one specified ScheduledItem<TAbsolute> object is due before or at the same of a second specified ScheduledItem<TAbsolute> object. - - The first object to compare. - The second object to compare. - true if the DueTime value of left is earlier than or simultaneous with the DueTime value of right; otherwise, false. - This operator provides results consistent with the IComparable implementation. - - - - Determines whether one specified ScheduledItem<TAbsolute> object is due after a second specified ScheduledItem<TAbsolute> object. - - The first object to compare. - The second object to compare. - true if the DueTime value of left is later than the DueTime value of right; otherwise, false. - This operator provides results consistent with the IComparable implementation. - - - - Determines whether one specified ScheduledItem<TAbsolute> object is due after or at the same time of a second specified ScheduledItem<TAbsolute> object. - - The first object to compare. - The second object to compare. - true if the DueTime value of left is later than or simultaneous with the DueTime value of right; otherwise, false. - This operator provides results consistent with the IComparable implementation. - - - - Determines whether two specified ScheduledItem<TAbsolute, TValue> objects are equal. - - The first object to compare. - The second object to compare. - true if both ScheduledItem<TAbsolute, TValue> are equal; otherwise, false. - This operator does not provide results consistent with the IComparable implementation. Instead, it implements reference equality. - - - - Determines whether two specified ScheduledItem<TAbsolute, TValue> objects are inequal. - - The first object to compare. - The second object to compare. - true if both ScheduledItem<TAbsolute, TValue> are inequal; otherwise, false. - This operator does not provide results consistent with the IComparable implementation. Instead, it implements reference equality. - - - - Determines whether a ScheduledItem<TAbsolute> object is equal to the specified object. - - The object to compare to the current ScheduledItem<TAbsolute> object. - true if the obj parameter is a ScheduledItem<TAbsolute> object and is equal to the current ScheduledItem<TAbsolute> object; otherwise, false. - - - - Returns the hash code for the current ScheduledItem<TAbsolute> object. - - A 32-bit signed integer hash code. - - - - Cancels the work item by disposing the resource returned by InvokeCore as soon as possible. - - - - - Gets whether the work item has received a cancellation request. - - - - - Represents a scheduled work item based on the materialization of an IScheduler.Schedule method call. - - Absolute time representation type. - Type of the state passed to the scheduled action. - - - - Creates a materialized work item. - - Recursive scheduler to invoke the scheduled action with. - State to pass to the scheduled action. - Scheduled action. - Time at which to run the scheduled action. - Comparer used to compare work items based on their scheduled time. - or or is null. - - - - Creates a materialized work item. - - Recursive scheduler to invoke the scheduled action with. - State to pass to the scheduled action. - Scheduled action. - Time at which to run the scheduled action. - or is null. - - - - Invokes the scheduled action with the supplied recursive scheduler and state. - - Cancellation resource returned by the scheduled action. - - - - Provides a set of static properties to access commonly used schedulers. - - - - - Yields execution of the current work item on the scheduler to another work item on the scheduler. - The caller should await the result of calling Yield to schedule the remainder of the current work item (known as the continuation). - - Scheduler to yield work on. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Yields execution of the current work item on the scheduler to another work item on the scheduler. - The caller should await the result of calling Yield to schedule the remainder of the current work item (known as the continuation). - - Scheduler to yield work on. - Cancellation token to cancel the continuation to run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Suspends execution of the current work item on the scheduler for the specified duration. - The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) after the specified duration. - - Scheduler to yield work on. - Time when the continuation should run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Suspends execution of the current work item on the scheduler for the specified duration. - The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) after the specified duration. - - Scheduler to yield work on. - Time when the continuation should run. - Cancellation token to cancel the continuation to run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Suspends execution of the current work item on the scheduler until the specified due time. - The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) at the specified due time. - - Scheduler to yield work on. - Time when the continuation should run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Suspends execution of the current work item on the scheduler until the specified due time. - The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) at the specified due time. - - Scheduler to yield work on. - Time when the continuation should run. - Cancellation token to cancel the continuation to run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Relative time after which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Relative time after which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Relative time after which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Relative time after which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Absolute time at which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Absolute time at which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Absolute time at which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Absolute time at which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Gets the current time according to the local machine's system clock. - - - - - Normalizes the specified TimeSpan value to a positive value. - - The TimeSpan value to normalize. - The specified TimeSpan value if it is zero or positive; otherwise, TimeSpan.Zero. - - - - Gets a scheduler that schedules work immediately on the current thread. - - - - - Gets a scheduler that schedules work as soon as possible on the current thread. - - - - - Gets a scheduler that schedules work on the platform's default scheduler. - - - - - Gets a scheduler that schedules work on the thread pool. - - - - - Gets a scheduler that schedules work on a new thread using default thread creation options. - - - - - Gets a scheduler that schedules work on Task Parallel Library (TPL) task pool using the default TaskScheduler. - - - - - Schedules an action to be executed recursively. - - Scheduler to execute the recursive action on. - Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively. - - The type of the state passed to the scheduled action. - Scheduler to execute the recursive action on. - State passed to the action to be executed. - Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively after a specified relative due time. - - Scheduler to execute the recursive action on. - Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified relative time. - Relative time after which to execute the action for the first time. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively after a specified relative due time. - - The type of the state passed to the scheduled action. - Scheduler to execute the recursive action on. - State passed to the action to be executed. - Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. - Relative time after which to execute the action for the first time. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively at a specified absolute due time. - - Scheduler to execute the recursive action on. - Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified absolute time. - Absolute time at which to execute the action for the first time. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively at a specified absolute due time. - - The type of the state passed to the scheduled action. - Scheduler to execute the recursive action on. - State passed to the action to be executed. - Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. - Absolute time at which to execute the action for the first time. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Returns the ISchedulerLongRunning implementation of the specified scheduler, or null if no such implementation is available. - - Scheduler to get the ISchedulerLongRunning implementation for. - The scheduler's ISchedulerLongRunning implementation if available; null otherwise. - - This helper method is made available for query operator authors in order to discover scheduler services by using the required - IServiceProvider pattern, which allows for interception or redefinition of scheduler services. - - - - - Returns the IStopwatchProvider implementation of the specified scheduler, or null if no such implementation is available. - - Scheduler to get the IStopwatchProvider implementation for. - The scheduler's IStopwatchProvider implementation if available; null otherwise. - - - This helper method is made available for query operator authors in order to discover scheduler services by using the required - IServiceProvider pattern, which allows for interception or redefinition of scheduler services. - - - Consider using in case a stopwatch is required, but use of emulation stopwatch based - on the scheduler's clock is acceptable. Use of this method is recommended for best-effort use of the stopwatch provider - scheduler service, where the caller falls back to not using stopwatches if this facility wasn't found. - - - - - - Returns the IStopwatchProvider implementation of the specified scheduler, or null if no such implementation is available. - - Scheduler to get the IStopwatchProvider implementation for. - The scheduler's IStopwatchProvider implementation if available; null otherwise. - - - This helper method is made available for query operator authors in order to discover scheduler services by using the required - IServiceProvider pattern, which allows for interception or redefinition of scheduler services. - - - Consider using the Scheduler.SchedulePeriodic extension methods for IScheduler in case periodic scheduling is required and - emulation of periodic behavior using other scheduler services is desirable. Use of this method is recommended for best-effort - use of the periodic scheduling service, where the caller falls back to not using periodic scheduling if this facility wasn't - found. - - - - - - Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. - If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation. - If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage. - Otherwise, the periodic task will be emulated using recursive scheduling. - - The type of the state passed to the scheduled action. - The scheduler to run periodic work on. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - or is null. - is less than TimeSpan.Zero. - - - - Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. - If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation. - If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage. - Otherwise, the periodic task will be emulated using recursive scheduling. - - The type of the state passed to the scheduled action. - Scheduler to execute the action on. - State passed to the action to be executed. - Period for running the work periodically. - Action to be executed. - The disposable object used to cancel the scheduled recurring action (best effort). - or is null. - is less than TimeSpan.Zero. - - - - Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. - If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation. - If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage. - Otherwise, the periodic task will be emulated using recursive scheduling. - - Scheduler to execute the action on. - Period for running the work periodically. - Action to be executed. - The disposable object used to cancel the scheduled recurring action (best effort). - or is null. - is less than TimeSpan.Zero. - - - - Starts a new stopwatch object by dynamically discovering the scheduler's capabilities. - If the scheduler provides stopwatch functionality, the request will be forwarded to the stopwatch provider implementation. - Otherwise, the stopwatch will be emulated using the scheduler's notion of absolute time. - - Scheduler to obtain a stopwatch for. - New stopwatch object; started at the time of the request. - is null. - The resulting stopwatch object can have non-monotonic behavior. - - - - Schedules an action to be executed. - - Scheduler to execute the action on. - Action to execute. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed after the specified relative due time. - - Scheduler to execute the action on. - Action to execute. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed at the specified absolute due time. - - Scheduler to execute the action on. - Action to execute. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed. - - Scheduler to execute the action on. - Action to execute. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Returns a scheduler that represents the original scheduler, without any of its interface-based optimizations (e.g. long running scheduling). - - Scheduler to disable all optimizations for. - Proxy to the original scheduler but without any optimizations enabled. - is null. - - - - Returns a scheduler that represents the original scheduler, without the specified set of interface-based optimizations (e.g. long running scheduling). - - Scheduler to disable the specified optimizations for. - Types of the optimization interfaces that have to be disabled. - Proxy to the original scheduler but without the specified optimizations enabled. - or is null. - - - - Returns a scheduler that wraps the original scheduler, adding exception handling for scheduled actions. - - Type of the exception to check for. - Scheduler to apply an exception filter for. - Handler that's run if an exception is caught. The exception will be rethrown if the handler returns false. - Wrapper around the original scheduler, enforcing exception handling. - or is null. - - - - Represents an awaitable scheduler operation. Awaiting the object causes the continuation to be posted back to the originating scheduler's work queue. - - - - - Controls whether the continuation is run on the originating synchronization context (false by default). - - true to run the continuation on the captured synchronization context; false otherwise (default). - Scheduler operation object with configured await behavior. - - - - Gets an awaiter for the scheduler operation, used to post back the continuation. - - Awaiter for the scheduler operation. - - - - (Infrastructure) Scheduler operation awaiter type used by the code generated for C# await and Visual Basic Await expressions. - - - - - Indicates whether the scheduler operation has completed. Returns false unless cancellation was already requested. - - - - - Completes the scheduler operation, throwing an OperationCanceledException in case cancellation was requested. - - - - - Registers the continuation with the scheduler operation. - - Continuation to be run on the originating scheduler. - - - - Efficient scheduler queue that maintains scheduled items sorted by absolute time. - - Absolute time representation type. - This type is not thread safe; users should ensure proper synchronization. - - - - Creates a new scheduler queue with a default initial capacity. - - - - - Creats a new scheduler queue with the specified initial capacity. - - Initial capacity of the scheduler queue. - is less than zero. - - - - Gets the number of scheduled items in the scheduler queue. - - - - - Enqueues the specified work item to be scheduled. - - Work item to be scheduled. - - - - Removes the specified work item from the scheduler queue. - - Work item to be removed from the scheduler queue. - true if the item was found; false otherwise. - - - - Dequeues the next work item from the scheduler queue. - - Next work item in the scheduler queue (removed). - - - - Peeks the next work item in the scheduler queue. - - Next work item in the scheduler queue (not removed). - - - - Provides basic synchronization and scheduling services for observable sequences. - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. - - The type of the elements in the source sequence. - Source sequence. - Scheduler to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified scheduler. - In order to invoke observer callbacks on the specified scheduler, e.g. to offload callback processing to a dedicated thread, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified synchronization context. - - The type of the elements in the source sequence. - Source sequence. - Synchronization context to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified synchronization context. - In order to invoke observer callbacks on the specified synchronization context, e.g. to post callbacks to a UI thread represented by the synchronization context, use . - - - - - Wraps the source sequence in order to run its observer callbacks on the specified scheduler. - - The type of the elements in the source sequence. - Source sequence. - Scheduler to notify observers on. - The source sequence whose observations happen on the specified scheduler. - or is null. - - - - Wraps the source sequence in order to run its observer callbacks on the specified synchronization context. - - The type of the elements in the source sequence. - Source sequence. - Synchronization context to notify observers on. - The source sequence whose observations happen on the specified synchronization context. - or is null. - - - - Wraps the source sequence in order to ensure observer callbacks are properly serialized. - - The type of the elements in the source sequence. - Source sequence. - The source sequence whose outgoing calls to observers are synchronized. - is null. - - - - Wraps the source sequence in order to ensure observer callbacks are synchronized using the specified gate object. - - The type of the elements in the source sequence. - Source sequence. - Gate object to synchronize each observer call on. - The source sequence whose outgoing calls to observers are synchronized on the given gate object. - or is null. - - - - Represents an object that schedules units of work on a provided . - - - - - Creates an object that schedules units of work on the provided . - - Synchronization context to schedule units of work on. - is null. - - - - Creates an object that schedules units of work on the provided . - - Synchronization context to schedule units of work on. - Configures whether scheduling always posts to the synchronization context, regardless whether the caller is on the same synchronization context. - is null. - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Represents an Action-based disposable. - - - - - Constructs a new disposable with the given action used for disposal. - - Disposal action which will be run upon calling Dispose. - - - - Gets a value that indicates whether the object is disposed. - - - - - Calls the disposal action if and only if the current instance hasn't been disposed yet. - - - - - Represents a disposable resource that can be checked for disposal status. - - - - - Initializes a new instance of the class. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Sets the status to disposed, which can be observer through the property. - - - - - Represents a disposable resource that has an associated that will be set to the cancellation requested state upon disposal. - - - - - Initializes a new instance of the class that uses an existing . - - used for cancellation. - is null. - - - - Initializes a new instance of the class that uses a new . - - - - - Gets the used by this CancellationDisposable. - - - - - Cancels the underlying . - - - - - Gets a value that indicates whether the object is disposed. - - - - - Represents a group of disposable resources that are disposed together. - - - - - Initializes a new instance of the class with no disposables contained by it initially. - - - - - Initializes a new instance of the class with the specified number of disposables. - - The number of disposables that the new CompositeDisposable can initially store. - is less than zero. - - - - Initializes a new instance of the class from a group of disposables. - - Disposables that will be disposed together. - is null. - Any of the disposables in the collection is null. - - - - Initializes a new instance of the class from a group of disposables. - - Disposables that will be disposed together. - is null. - Any of the disposables in the collection is null. - - - - Gets the number of disposables contained in the CompositeDisposable. - - - - - Adds a disposable to the CompositeDisposable or disposes the disposable if the CompositeDisposable is disposed. - - Disposable to add. - is null. - - - - Removes and disposes the first occurrence of a disposable from the CompositeDisposable. - - Disposable to remove. - true if found; false otherwise. - is null. - - - - Disposes all disposables in the group and removes them from the group. - - - - - Removes and disposes all disposables from the CompositeDisposable, but does not dispose the CompositeDisposable. - - - - - Determines whether the CompositeDisposable contains a specific disposable. - - Disposable to search for. - true if the disposable was found; otherwise, false. - is null. - - - - Copies the disposables contained in the CompositeDisposable to an array, starting at a particular array index. - - Array to copy the contained disposables to. - Target index at which to copy the first disposable of the group. - is null. - is less than zero. -or - is larger than or equal to the array length. - - - - Always returns false. - - - - - Returns an enumerator that iterates through the CompositeDisposable. - - An enumerator to iterate over the disposables. - - - - Returns an enumerator that iterates through the CompositeDisposable. - - An enumerator to iterate over the disposables. - - - - Gets a value that indicates whether the object is disposed. - - - - - Represents a disposable resource whose disposal invocation will be posted to the specified . - - - - - Initializes a new instance of the class that uses the specified on which to dispose the specified disposable resource. - - Context to perform disposal on. - Disposable whose Dispose operation to run on the given synchronization context. - or is null. - - - - Gets the provided . - - - - - Gets a value that indicates whether the object is disposed. - - - - - Disposes the underlying disposable on the provided . - - - - - Represents a disposable that does nothing on disposal. - - - - - Singleton default disposable. - - - - - Does nothing. - - - - - Provides a set of static methods for creating Disposables. - - - - - Gets the disposable that does nothing when disposed. - - - - - Creates a disposable object that invokes the specified action when disposed. - - Action to run during the first call to . The action is guaranteed to be run at most once. - The disposable object that runs the given action upon disposal. - is null. - - - - Represents a disposable resource whose underlying disposable resource can be swapped for another disposable resource. - - - - - Initializes a new instance of the class with no current underlying disposable. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Gets or sets the underlying disposable. After disposal, the result of getting this property is undefined. - - If the MutableDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object. - - - - Disposes the underlying disposable as well as all future replacements. - - - - - Represents a disposable resource that only disposes its underlying disposable resource when all dependent disposable objects have been disposed. - - - - - Initializes a new instance of the class with the specified disposable. - - Underlying disposable. - is null. - - - - Gets a value that indicates whether the object is disposed. - - - - - Returns a dependent disposable that when disposed decreases the refcount on the underlying disposable. - - A dependent disposable contributing to the reference count that manages the underlying disposable's lifetime. - - - - Disposes the underlying disposable only when all dependent disposables have been disposed. - - - - - Represents a disposable resource whose disposal invocation will be scheduled on the specified . - - - - - Initializes a new instance of the class that uses an on which to dispose the disposable. - - Scheduler where the disposable resource will be disposed on. - Disposable resource to dispose on the given scheduler. - or is null. - - - - Gets the scheduler where the disposable resource will be disposed on. - - - - - Gets the underlying disposable. After disposal, the result is undefined. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Disposes the wrapped disposable on the provided scheduler. - - - - - Represents a disposable resource whose underlying disposable resource can be replaced by another disposable resource, causing automatic disposal of the previous underlying disposable resource. - - - - - Initializes a new instance of the class. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Gets or sets the underlying disposable. - - If the SerialDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object. Assigning this property disposes the previous disposable object. - - - - Disposes the underlying disposable as well as all future replacements. - - - - - Represents a disposable resource which only allows a single assignment of its underlying disposable resource. - If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an . - - - - - Initializes a new instance of the class. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Gets or sets the underlying disposable. After disposal, the result of getting this property is undefined. - - Thrown if the SingleAssignmentDisposable has already been assigned to. - - - - Disposes the underlying disposable. - - - - - Represents a group of disposable resources that are disposed together. - - - - - Creates a new group containing two disposable resources that are disposed together. - - The first disposable resoruce to add to the group. - The second disposable resoruce to add to the group. - Group of disposable resources that are disposed together. - - - - Creates a new group of disposable resources that are disposed together. - - Disposable resources to add to the group. - Group of disposable resources that are disposed together. - - - - Creates a new group of disposable resources that are disposed together. - - Disposable resources to add to the group. - Group of disposable resources that are disposed together. - - - - Disposes all disposables in the group. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Interface with variance annotation; allows for better type checking when detecting capabilities in SubscribeSafe. - - Type of the resulting sequence's elements. - - - - Base class for implementation of query operators, providing performance benefits over the use of Observable.Create. - - Type of the resulting sequence's elements. - - - - Publicly visible Subscribe method. - - Observer to send notifications on. The implementation of a producer must ensure the correct message grammar on the observer. - IDisposable to cancel the subscription. This causes the underlying sink to be notified of unsubscription, causing it to prevent further messages from being sent to the observer. - - - - Core implementation of the query operator, called upon a new subscription to the producer object. - - Observer to send notifications on. The implementation of a producer must ensure the correct message grammar on the observer. - The subscription disposable object returned from the Run call, passed in such that it can be forwarded to the sink, allowing it to dispose the subscription upon sending a final message (or prematurely for other reasons). - Callback to communicate the sink object to the subscriber, allowing consumers to tunnel a Dispose call into the sink, which can stop the processing. - Disposable representing all the resources and/or subscriptions the operator uses to process events. - The observer passed in to this method is not protected using auto-detach behavior upon an OnError or OnCompleted call. The implementation must ensure proper resource disposal and enforce the message grammar. - - - - Base class for implementation of query operators, providing a lightweight sink that can be disposed to mute the outgoing observer. - - Type of the resulting sequence's elements. - Implementations of sinks are responsible to enforce the message grammar on the associated observer. Upon sending a terminal message, a pairing Dispose call should be made to trigger cancellation of related resources and to mute the outgoing observer. - - - - Provides a set of static methods for subscribing delegates to observables. - - - - - Subscribes to the observable sequence without specifying any handlers. - This method can be used to evaluate the observable sequence for its side-effects only. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - IDisposable object used to unsubscribe from the observable sequence. - is null. - - - - Subscribes an element handler to an observable sequence. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - IDisposable object used to unsubscribe from the observable sequence. - or is null. - - - - Subscribes an element handler and an exception handler to an observable sequence. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - IDisposable object used to unsubscribe from the observable sequence. - or or is null. - - - - Subscribes an element handler and a completion handler to an observable sequence. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - IDisposable object used to unsubscribe from the observable sequence. - or or is null. - - - - Subscribes an element handler, an exception handler, and a completion handler to an observable sequence. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - IDisposable object used to unsubscribe from the observable sequence. - or or or is null. - - - - Subscribes an observer to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Observer to subscribe to the sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or is null. - - - - Subscribes to the observable sequence without specifying any handlers, using a CancellationToken to support unsubscription. - This method can be used to evaluate the observable sequence for its side-effects only. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - CancellationToken that can be signaled to unsubscribe from the source sequence. - is null. - - - - Subscribes an element handler to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or is null. - - - - Subscribes an element handler and an exception handler to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or or is null. - - - - Subscribes an element handler and a completion handler to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or or is null. - - - - Subscribes an element handler, an exception handler, and a completion handler to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or or or is null. - - - - Subscribes to the specified source, re-routing synchronous exceptions during invocation of the Subscribe method to the observer's OnError channel. - This method is typically used when writing query operators. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Observer that will be passed to the observable sequence, and that will be used for exception propagation. - IDisposable object used to unsubscribe from the observable sequence. - or is null. - - - diff --git a/References/DESKTOPCLR45/System.Reactive.Core.dll b/References/DESKTOPCLR45/System.Reactive.Core.dll deleted file mode 100644 index 55693f0..0000000 Binary files a/References/DESKTOPCLR45/System.Reactive.Core.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/System.Reactive.Interfaces.XML b/References/DESKTOPCLR45/System.Reactive.Interfaces.XML deleted file mode 100644 index 1204bd4..0000000 --- a/References/DESKTOPCLR45/System.Reactive.Interfaces.XML +++ /dev/null @@ -1,336 +0,0 @@ - - - - System.Reactive.Interfaces - - - - - The System.Reactive namespace contains interfaces and classes used throughout the Reactive Extensions library. - - - - - The System.Reactive.Concurrency namespace contains interfaces and classes that provide the scheduler infrastructure used by Reactive Extensions to construct and - process event streams. Schedulers are used to parameterize the concurrency introduced by query operators, provide means to virtualize time, to process historical data, - and to write unit tests for functionality built using Reactive Extensions constructs. - - - - - Represents a work item that has been scheduled. - - Absolute time representation type. - - - - Gets the absolute time at which the item is due for invocation. - - - - - Invokes the work item. - - - - - Represents an object that schedules units of work. - - - - - Gets the scheduler's notion of current time. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - - - - Scheduler with support for starting long-running tasks. - This type of scheduler can be used to run loops more efficiently instead of using recursive scheduling. - - - - - Schedules a long-running piece of work. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - Notes to implementers - The returned disposable object should not prevent the work from starting, but only set the cancellation flag passed to the specified action. - - - - - Scheduler with support for running periodic tasks. - This type of scheduler can be used to run timers more efficiently instead of using recursive scheduling. - - - - - Schedules a periodic piece of work. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - - - - Abstraction for a stopwatch to compute time relative to a starting point. - - - - - Gets the time elapsed since the stopwatch object was obtained. - - - - - Provider for IStopwatch objects. - - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - The System.Reactive.Disposables namespace contains interfaces and classes that provide a compositional set of constructs used to deal with resource and subscription - management in Reactive Extensions. Those types are used extensively within the implementation of Reactive Extensions and are useful when writing custom query operators or - schedulers. - - - - - Disposable resource with disposal state tracking. - - - - - Gets a value that indicates whether the object is disposed. - - - - - The System.Reactive.Linq namespace contains interfaces and classes that support expressing queries over observable sequences, using Language Integrated Query (LINQ). - Query operators are made available as extension methods for IObservable<T> and IQbservable<T> defined on the Observable and Qbservable classes, respectively. - - - - - Represents an observable sequence of elements that have a common key. - - - The type of the key shared by all elements in the group. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the elements in the group. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Gets the common key. - - - - - Provides functionality to evaluate queries against a specific data source wherein the type of the data is known. - - - The type of the data in the data source. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Provides functionality to evaluate queries against a specific data source wherein the type of the data is not specified. - - - - - Gets the type of the element(s) that are returned when the expression tree associated with this instance of IQbservable is executed. - - - - - Gets the expression tree that is associated with the instance of IQbservable. - - - - - Gets the query provider that is associated with this data source. - - - - - Defines methods to create and execute queries that are described by an IQbservable object. - - - - - Constructs an IQbservable>TResult< object that can evaluate the query represented by a specified expression tree. - - The type of the elements of the System.Reactive.Linq.IQbservable<T> that is returned. - Expression tree representing the query. - IQbservable object that can evaluate the given query expression. - - - - The System.Reactive.Subjects namespace contains interfaces and classes to represent subjects, which are objects implementing both IObservable<T> and IObserver<T>. - Subjects are often used as sources of events, allowing one party to raise events and allowing another party to write queries over the event stream. Because of their ability to - have multiple registered observers, subjects are also used as a facility to provide multicast behavior for event streams in queries. - - - - - Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence. - - - The type of the elements in the sequence. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established. - - Disposable used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence. - - - - Represents an object that is both an observable sequence as well as an observer. - - The type of the elements processed by the subject. - - - - Represents an object that is both an observable sequence as well as an observer. - - - The type of the elements received by the subject. - This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the elements produced by the subject. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event. - - - The type of the sender that raised the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the event data generated by the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Gets the sender object that raised the event. - - - - - Gets the event data that was generated by the event. - - - - - Represents a data stream signaling its elements by means of an event. - - The type of the event data generated by the event. - - - - Event signaling the next element in the data stream. - - - - - Represents a data stream signaling its elements by means of an event. - - - The type of the event data generated by the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Event signaling the next element in the data stream. - - - - - Provides a mechanism for receiving push-based notifications and returning a response. - - - The type of the elements received by the observer. - This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the result returned from the observer's notification handlers. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Notifies the observer of a new element in the sequence. - - The new element in the sequence. - Result returned upon observation of a new element. - - - - Notifies the observer that an exception has occurred. - - The exception that occurred. - Result returned upon observation of an error. - - - - Notifies the observer of the end of the sequence. - - Result returned upon observation of the sequence completion. - - - diff --git a/References/DESKTOPCLR45/System.Reactive.Interfaces.dll b/References/DESKTOPCLR45/System.Reactive.Interfaces.dll deleted file mode 100644 index 76631b1..0000000 Binary files a/References/DESKTOPCLR45/System.Reactive.Interfaces.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/System.Reactive.Linq.XML b/References/DESKTOPCLR45/System.Reactive.Linq.XML deleted file mode 100644 index ecb4290..0000000 --- a/References/DESKTOPCLR45/System.Reactive.Linq.XML +++ /dev/null @@ -1,11153 +0,0 @@ - - - - System.Reactive.Linq - - - - - The System.Reactive.Joins namespace contains classes used to express join patterns over observable sequences using fluent method syntax. - - - - - Abstract base class for join patterns. - - - - - Represents a join pattern over one observable sequence. - - The type of the elements in the first source sequence. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over two observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - - - - Creates a pattern that matches when all three observable sequences have an available element. - - The type of the elements in the third observable sequence. - Observable sequence to match with the two previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over three observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - - - - Creates a pattern that matches when all four observable sequences have an available element. - - The type of the elements in the fourth observable sequence. - Observable sequence to match with the three previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over four observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - - - - Creates a pattern that matches when all five observable sequences have an available element. - - The type of the elements in the fifth observable sequence. - Observable sequence to match with the four previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over five observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - - - - Creates a pattern that matches when all six observable sequences have an available element. - - The type of the elements in the sixth observable sequence. - Observable sequence to match with the five previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over six observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - - - - Creates a pattern that matches when all seven observable sequences have an available element. - - The type of the elements in the seventh observable sequence. - Observable sequence to match with the six previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over seven observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - - - - Creates a pattern that matches when all eight observable sequences have an available element. - - The type of the elements in the eighth observable sequence. - Observable sequence to match with the seven previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over eight observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - - - - Creates a pattern that matches when all nine observable sequences have an available element. - - The type of the elements in the ninth observable sequence. - Observable sequence to match with the eight previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over nine observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - - - - Creates a pattern that matches when all ten observable sequences have an available element. - - The type of the elements in the tenth observable sequence. - Observable sequence to match with the nine previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over ten observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - - - - Creates a pattern that matches when all eleven observable sequences have an available element. - - The type of the elements in the eleventh observable sequence. - Observable sequence to match with the ten previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over eleven observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - - - - Creates a pattern that matches when all twelve observable sequences have an available element. - - The type of the elements in the twelfth observable sequence. - Observable sequence to match with the eleven previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over twelve observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - - - - Creates a pattern that matches when all thirteen observable sequences have an available element. - - The type of the elements in the thirteenth observable sequence. - Observable sequence to match with the twelve previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over thirteen observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - - - - Creates a pattern that matches when all fourteen observable sequences have an available element. - - The type of the elements in the fourteenth observable sequence. - Observable sequence to match with the thirteen previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over fourteen observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - - - - Creates a pattern that matches when all fifteen observable sequences have an available element. - - The type of the elements in the fifteenth observable sequence. - Observable sequence to match with the fourteen previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over fifteen observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - - - - Creates a pattern that matches when all sixteen observable sequences have an available element. - - The type of the elements in the sixteenth observable sequence. - Observable sequence to match with the fifteen previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over sixteen observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the sixteenth source sequence. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents an execution plan for join patterns. - - The type of the results produced by the plan. - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - Looks up a localized string similar to Could not find event '{0}' on object of type '{1}'.. - - - - - Looks up a localized string similar to Could not find event '{0}' on type '{1}'.. - - - - - Looks up a localized string similar to Add method should take 1 parameter.. - - - - - Looks up a localized string similar to The second parameter of the event delegate must be assignable to '{0}'.. - - - - - Looks up a localized string similar to Event is missing the add method.. - - - - - Looks up a localized string similar to Event is missing the remove method.. - - - - - Looks up a localized string similar to The event delegate must have a void return type.. - - - - - Looks up a localized string similar to The event delegate must have exactly two parameters.. - - - - - Looks up a localized string similar to Remove method should take 1 parameter.. - - - - - Looks up a localized string similar to The first parameter of the event delegate must be assignable to '{0}'.. - - - - - Looks up a localized string similar to Remove method of a WinRT event should take an EventRegistrationToken.. - - - - - Looks up a localized string similar to Sequence contains more than one element.. - - - - - Looks up a localized string similar to Sequence contains more than one matching element.. - - - - - Looks up a localized string similar to Sequence contains no elements.. - - - - - Looks up a localized string similar to Sequence contains no matching element.. - - - - - Looks up a localized string similar to {0} cannot be called when the scheduler is already running. Try using Sleep instead.. - - - - - Represents a .NET event invocation consisting of the weakly typed object that raised the event and the data that was generated by the event. - - The type of the event data generated by the event. - - - - Creates a new data representation instance of a .NET event invocation with the given sender and event data. - - The sender object that raised the event. - The event data that was generated by the event. - - - - Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event. - - The type of the sender that raised the event. - The type of the event data generated by the event. - - - - Creates a new data representation instance of a .NET event invocation with the given sender and event data. - - The sender object that raised the event. - The event data that was generated by the event. - - - - Gets the sender object that raised the event. - - - - - Gets the event data that was generated by the event. - - - - - Determines whether the current EventPattern<TSender, TEventArgs> object represents the same event as a specified EventPattern<TSender, TEventArgs> object. - - An object to compare to the current EventPattern<TSender, TEventArgs> object. - true if both EventPattern<TSender, TEventArgs> objects represent the same event; otherwise, false. - - - - Determines whether the specified System.Object is equal to the current EventPattern<TSender, TEventArgs>. - - The System.Object to compare with the current EventPattern<TSender, TEventArgs>. - true if the specified System.Object is equal to the current EventPattern<TSender, TEventArgs>; otherwise, false. - - - - Returns the hash code for the current EventPattern<TSender, TEventArgs> instance. - - A hash code for the current EventPattern<TSender, TEventArgs> instance. - - - - Determines whether two specified EventPattern<TSender, TEventArgs> objects represent the same event. - - The first EventPattern<TSender, TEventArgs> to compare, or null. - The second EventPattern<TSender, TEventArgs> to compare, or null. - true if both EventPattern<TSender, TEventArgs> objects represent the same event; otherwise, false. - - - - Determines whether two specified EventPattern<TSender, TEventArgs> objects represent a different event. - - The first EventPattern<TSender, TEventArgs> to compare, or null. - The second EventPattern<TSender, TEventArgs> to compare, or null. - true if both EventPattern<TSender, TEventArgs> objects don't represent the same event; otherwise, false. - - - - Base class for classes that expose an observable sequence as a well-known event pattern (sender, event arguments). - Contains functionality to maintain a map of event handler delegates to observable sequence subscriptions. Subclasses - should only add an event with custom add and remove methods calling into the base class's operations. - - The type of the sender that raises the event. - The type of the event data generated by the event. - - - - Creates a new event pattern source. - - Source sequence to expose as an event. - Delegate used to invoke the event for each element of the sequence. - or is null. - - - - Adds the specified event handler, causing a subscription to the underlying source. - - Event handler to add. The same delegate should be passed to the Remove operation in order to remove the event handler. - Invocation delegate to raise the event in the derived class. - or is null. - - - - Removes the specified event handler, causing a disposal of the corresponding subscription to the underlying source that was created during the Add operation. - - Event handler to remove. This should be the same delegate as one that was passed to the Add operation. - is null. - - - - Represents a value associated with time interval information. - The time interval can represent the time it took to produce the value, the interval relative to a previous value, the value's delivery time relative to a base, etc. - - The type of the value being annotated with time interval information. - - - - Constructs a time interval value. - - The value to be annotated with a time interval. - Time interval associated with the value. - - - - Gets the value. - - - - - Gets the interval. - - - - - Determines whether the current TimeInterval<T> value has the same Value and Interval as a specified TimeInterval<T> value. - - An object to compare to the current TimeInterval<T> value. - true if both TimeInterval<T> values have the same Value and Interval; otherwise, false. - - - - Determines whether the two specified TimeInterval<T> values have the same Value and Interval. - - The first TimeInterval<T> value to compare. - The second TimeInterval<T> value to compare. - true if the first TimeInterval<T> value has the same Value and Interval as the second TimeInterval<T> value; otherwise, false. - - - - Determines whether the two specified TimeInterval<T> values don't have the same Value and Interval. - - The first TimeInterval<T> value to compare. - The second TimeInterval<T> value to compare. - true if the first TimeInterval<T> value has a different Value or Interval as the second TimeInterval<T> value; otherwise, false. - - - - Determines whether the specified System.Object is equal to the current TimeInterval<T>. - - The System.Object to compare with the current TimeInterval<T>. - true if the specified System.Object is equal to the current TimeInterval<T>; otherwise, false. - - - - Returns the hash code for the current TimeInterval<T> value. - - A hash code for the current TimeInterval<T> value. - - - - Returns a string representation of the current TimeInterval<T> value. - - String representation of the current TimeInterval<T> value. - - - - Represents value with a timestamp on it. - The timestamp typically represents the time the value was received, using an IScheduler's clock to obtain the current time. - - The type of the value being timestamped. - - - - Constructs a timestamped value. - - The value to be annotated with a timestamp. - Timestamp associated with the value. - - - - Gets the value. - - - - - Gets the timestamp. - - - - - Determines whether the current Timestamped<T> value has the same Value and Timestamp as a specified Timestamped<T> value. - - An object to compare to the current Timestamped<T> value. - true if both Timestamped<T> values have the same Value and Timestamp; otherwise, false. - - - - Determines whether the two specified Timestamped<T> values have the same Value and Timestamp. - - The first Timestamped<T> value to compare. - The second Timestamped<T> value to compare. - true if the first Timestamped<T> value has the same Value and Timestamp as the second Timestamped<T> value; otherwise, false. - - - - Determines whether the two specified Timestamped<T> values don't have the same Value and Timestamp. - - The first Timestamped<T> value to compare. - The second Timestamped<T> value to compare. - true if the first Timestamped<T> value has a different Value or Timestamp as the second Timestamped<T> value; otherwise, false. - - - - Determines whether the specified System.Object is equal to the current Timestamped<T>. - - The System.Object to compare with the current Timestamped<T>. - true if the specified System.Object is equal to the current Timestamped<T>; otherwise, false. - - - - Returns the hash code for the current Timestamped<T> value. - - A hash code for the current Timestamped<T> value. - - - - Returns a string representation of the current Timestamped<T> value. - - String representation of the current Timestamped<T> value. - - - - A helper class with a factory method for creating Timestamped<T> instances. - - - - - Creates an instance of a Timestamped<T>. This is syntactic sugar that uses type inference - to avoid specifying a type in a constructor call, which is very useful when using anonymous types. - - The value to be annotated with a timestamp. - Timestamp associated with the value. - Creates a new timestamped value. - - - - Base class for historical schedulers, which are virtual time schedulers that use DateTimeOffset for absolute time and TimeSpan for relative time. - - - - - Creates a new historical scheduler with the minimum value of DateTimeOffset as the initial clock value. - - - - - Creates a new historical scheduler with the specified initial clock value. - - Initial clock value. - - - - Creates a new historical scheduler with the specified initial clock value and absolute time comparer. - - Initial value for the clock. - Comparer to determine causality of events based on absolute time. - - - - Adds a relative time value to an absolute time value. - - Absolute time value. - Relative time value to add. - The resulting absolute time sum value. - - - - Converts the absolute time value to a DateTimeOffset value. - - Absolute time value to convert. - The corresponding DateTimeOffset value. - - - - Converts the TimeSpan value to a relative time value. - - TimeSpan value to convert. - The corresponding relative time value. - - - - Provides a virtual time scheduler that uses DateTimeOffset for absolute time and TimeSpan for relative time. - - - - - Creates a new historical scheduler with the minimum value of DateTimeOffset as the initial clock value. - - - - - Creates a new historical scheduler with the specified initial clock value. - - Initial value for the clock. - - - - Creates a new historical scheduler with the specified initial clock value. - - Initial value for the clock. - Comparer to determine causality of events based on absolute time. - is null. - - - - Gets the next scheduled item to be executed. - - The next scheduled item. - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Base class for virtual time schedulers. - - Absolute time representation type. - Relative time representation type. - - - - Creates a new virtual time scheduler with the default value of TAbsolute as the initial clock value. - - - - - Creates a new virtual time scheduler with the specified initial clock value and absolute time comparer. - - Initial value for the clock. - Comparer to determine causality of events based on absolute time. - is null. - - - - Adds a relative time value to an absolute time value. - - Absolute time value. - Relative time value to add. - The resulting absolute time sum value. - - - - Converts the absolute time value to a DateTimeOffset value. - - Absolute time value to convert. - The corresponding DateTimeOffset value. - - - - Converts the TimeSpan value to a relative time value. - - TimeSpan value to convert. - The corresponding relative time value. - - - - Gets whether the scheduler is enabled to run work. - - - - - Gets the comparer used to compare absolute time values. - - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Absolute time at which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Relative time after which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Relative time after which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Absolute time at which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Starts the virtual time scheduler. - - - - - Stops the virtual time scheduler. - - - - - Advances the scheduler's clock to the specified time, running all work till that point. - - Absolute time to advance the scheduler's clock to. - is in the past. - The scheduler is already running. VirtualTimeScheduler doesn't support running nested work dispatch loops. To simulate time slippage while running work on the scheduler, use . - - - - Advances the scheduler's clock by the specified relative time, running all work scheduled for that timespan. - - Relative time to advance the scheduler's clock by. - is negative. - The scheduler is already running. VirtualTimeScheduler doesn't support running nested work dispatch loops. To simulate time slippage while running work on the scheduler, use . - - - - Advances the scheduler's clock by the specified relative time. - - Relative time to advance the scheduler's clock by. - is negative. - - - - Gets the scheduler's absolute time clock value. - - - - - Gets the scheduler's notion of current time. - - - - - Gets the next scheduled item to be executed. - - The next scheduled item. - - - - Discovers scheduler services by interface type. The base class implementation supports - only the IStopwatchProvider service. To influence service discovery - such as adding - support for other scheduler services - derived types can override this method. - - Scheduler service interface type to discover. - Object implementing the requested service, if available; null otherwise. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Base class for virtual time schedulers using a priority queue for scheduled items. - - Absolute time representation type. - Relative time representation type. - - - - Creates a new virtual time scheduler with the default value of TAbsolute as the initial clock value. - - - - - Creates a new virtual time scheduler. - - Initial value for the clock. - Comparer to determine causality of events based on absolute time. - is null. - - - - Gets the next scheduled item to be executed. - - The next scheduled item. - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Provides a set of extension methods for virtual time scheduling. - - - - - Schedules an action to be executed at dueTime. - - Absolute time representation type. - Relative time representation type. - Scheduler to execute the action on. - Relative time after which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed at dueTime. - - Absolute time representation type. - Relative time representation type. - Scheduler to execute the action on. - Absolute time at which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Internal interface describing the LINQ to Events query language. - - - - - Attribute applied to static classes providing expression tree forms of query methods, - mapping those to the corresponding methods for local query execution on the specified - target class type. - - - - - Creates a new mapping to the specified local execution query method implementation type. - - Type with query methods for local execution. - - - - Gets the type with the implementation of local query methods. - - - - - Provides a set of static methods for writing in-memory queries over observable sequences. - - - - - Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value. - For aggregation behavior with incremental intermediate results, see . - - The type of the elements in the source sequence. - The type of the result of the aggregation. - An observable sequence to aggregate over. - The initial accumulator value. - An accumulator function to be invoked on each element. - An observable sequence containing a single element with the final accumulator value. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value, - and the specified result selector function is used to select the result value. - - The type of the elements in the source sequence. - The type of the accumulator value. - The type of the resulting value. - An observable sequence to aggregate over. - The initial accumulator value. - An accumulator function to be invoked on each element. - A function to transform the final accumulator value into the result value. - An observable sequence containing a single element with the final accumulator value. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. - For aggregation behavior with incremental intermediate results, see . - - The type of the elements in the source sequence and the result of the aggregation. - An observable sequence to aggregate over. - An accumulator function to be invoked on each element. - An observable sequence containing a single element with the final accumulator value. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether all elements of an observable sequence satisfy a condition. - - The type of the elements in the source sequence. - An observable sequence whose elements to apply the predicate to. - A function to test each element for a condition. - An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable sequence contains any elements. - - The type of the elements in the source sequence. - An observable sequence to check for non-emptiness. - An observable sequence containing a single element determining whether the source sequence contains any elements. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether any element of an observable sequence satisfies a condition. - - The type of the elements in the source sequence. - An observable sequence whose elements to apply the predicate to. - A function to test each element for a condition. - An observable sequence containing a single element determining whether any elements in the source sequence pass the test in the specified predicate. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - (Asynchronous) The sum of the elements in the source sequence is larger than . - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable sequence contains a specified element by using the default equality comparer. - - The type of the elements in the source sequence. - An observable sequence in which to locate a value. - The value to locate in the source sequence. - An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer<T>. - - The type of the elements in the source sequence. - An observable sequence in which to locate a value. - The value to locate in the source sequence. - An equality comparer to compare elements. - An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns an observable sequence containing an that represents the total number of elements in an observable sequence. - - The type of the elements in the source sequence. - An observable sequence that contains elements to be counted. - An observable sequence containing a single element with the number of elements in the input sequence. - is null. - (Asynchronous) The number of elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition. - - The type of the elements in the source sequence. - An observable sequence that contains elements to be counted. - A function to test each element for a condition. - An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the element at a specified index in a sequence. - - The type of the elements in the source sequence. - Observable sequence to return the element from. - The zero-based index of the element to retrieve. - An observable sequence that produces the element at the specified position in the source sequence. - is null. - is less than zero. - (Asynchronous) is greater than or equal to the number of elements in the source sequence. - - - - Returns the element at a specified index in a sequence or a default value if the index is out of range. - - The type of the elements in the source sequence. - Observable sequence to return the element from. - The zero-based index of the element to retrieve. - An observable sequence that produces the element at the specified position in the source sequence, or a default value if the index is outside the bounds of the source sequence. - is null. - is less than zero. - - - - Returns the first element of an observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the first element in the observable sequence. - is null. - (Asynchronous) The source sequence is empty. - - - - Returns the first element of an observable sequence that satisfies the condition in the predicate. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the first element in the observable sequence that satisfies the condition in the predicate. - or is null. - (Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - Returns the first element of an observable sequence, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the first element in the observable sequence, or a default value if no such element exists. - is null. - - - - Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - - - - Determines whether an observable sequence is empty. - - The type of the elements in the source sequence. - An observable sequence to check for emptiness. - An observable sequence containing a single element determining whether the source sequence is empty. - is null. - - - - Returns the last element of an observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the last element in the observable sequence. - is null. - (Asynchronous) The source sequence is empty. - - - - Returns the last element of an observable sequence that satisfies the condition in the predicate. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the last element in the observable sequence that satisfies the condition in the predicate. - or is null. - (Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - Returns the last element of an observable sequence, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the last element in the observable sequence, or a default value if no such element exists. - is null. - - - - Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - - - - Returns an observable sequence containing an that represents the total number of elements in an observable sequence. - - The type of the elements in the source sequence. - An observable sequence that contains elements to be counted. - An observable sequence containing a single element with the number of elements in the input sequence. - is null. - (Asynchronous) The number of elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition. - - The type of the elements in the source sequence. - An observable sequence that contains elements to be counted. - A function to test each element for a condition. - An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum element in an observable sequence. - - The type of the elements in the source sequence. - An observable sequence to determine the maximum element of. - An observable sequence containing a single element with the maximum element in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence according to the specified comparer. - - The type of the elements in the source sequence. - An observable sequence to determine the maximum element of. - Comparer used to compare elements. - An observable sequence containing a single element with the maximum element in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - The type of the objects derived from the elements in the source sequence to determine the maximum of. - An observable sequence to determine the mimimum element of. - A transform function to apply to each element. - An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value according to the specified comparer. - - The type of the elements in the source sequence. - The type of the objects derived from the elements in the source sequence to determine the maximum of. - An observable sequence to determine the mimimum element of. - A transform function to apply to each element. - Comparer used to compare elements. - An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the elements in an observable sequence with the maximum key value. - - The type of the elements in the source sequence. - The type of the key computed for each element in the source sequence. - An observable sequence to get the maximum elements for. - Key selector function. - An observable sequence containing a list of zero or more elements that have a maximum key value. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the elements in an observable sequence with the maximum key value according to the specified comparer. - - The type of the elements in the source sequence. - The type of the key computed for each element in the source sequence. - An observable sequence to get the maximum elements for. - Key selector function. - Comparer used to compare key values. - An observable sequence containing a list of zero or more elements that have a maximum key value. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum element in an observable sequence. - - The type of the elements in the source sequence. - An observable sequence to determine the mimimum element of. - An observable sequence containing a single element with the minimum element in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum element in an observable sequence according to the specified comparer. - - The type of the elements in the source sequence. - An observable sequence to determine the mimimum element of. - Comparer used to compare elements. - An observable sequence containing a single element with the minimum element in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - The type of the objects derived from the elements in the source sequence to determine the minimum of. - An observable sequence to determine the mimimum element of. - A transform function to apply to each element. - An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value according to the specified comparer. - - The type of the elements in the source sequence. - The type of the objects derived from the elements in the source sequence to determine the minimum of. - An observable sequence to determine the mimimum element of. - A transform function to apply to each element. - Comparer used to compare elements. - An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the elements in an observable sequence with the minimum key value. - - The type of the elements in the source sequence. - The type of the key computed for each element in the source sequence. - An observable sequence to get the minimum elements for. - Key selector function. - An observable sequence containing a list of zero or more elements that have a minimum key value. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the elements in an observable sequence with the minimum key value according to the specified comparer. - - The type of the elements in the source sequence. - The type of the key computed for each element in the source sequence. - An observable sequence to get the minimum elements for. - Key selector function. - Comparer used to compare key values. - An observable sequence containing a list of zero or more elements that have a minimum key value. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether two sequences are equal by comparing the elements pairwise. - - The type of the elements in the source sequence. - First observable sequence to compare. - Second observable sequence to compare. - An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer. - - The type of the elements in the source sequence. - First observable sequence to compare. - Second observable sequence to compare. - Comparer used to compare elements of both sequences. - An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise. - - The type of the elements in the source sequence. - First observable sequence to compare. - Second observable sequence to compare. - An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise using a specified equality comparer. - - The type of the elements in the source sequence. - First observable sequence to compare. - Second observable sequence to compare. - Comparer used to compare elements of both sequences. - An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the only element of an observable sequence, and reports an exception if there is not exactly one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the single element in the observable sequence. - is null. - (Asynchronous) The source sequence contains more than one element. -or- The source sequence is empty. - - - - Returns the only element of an observable sequence that satisfies the condition in the predicate, and reports an exception if there is not exactly one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the single element in the observable sequence that satisfies the condition in the predicate. - or is null. - (Asynchronous) No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - Returns the only element of an observable sequence, or a default value if the observable sequence is empty; this method reports an exception if there is more than one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the single element in the observable sequence, or a default value if no such element exists. - is null. - (Asynchronous) The source sequence contains more than one element. - - - - Returns the only element of an observable sequence that matches the predicate, or a default value if no such element exists; this method reports an exception if there is more than one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - (Asynchronous) The sequence contains more than one element that satisfies the condition in the predicate. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates an array from an observable sequence. - - The type of the elements in the source sequence. - The source observable sequence to get an array of elements for. - An observable sequence containing a single element with an array containing all the elements of the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a dictionary from an observable sequence according to a specified key selector function. - - The type of the elements in the source sequence. - The type of the dictionary key computed for each element in the source sequence. - An observable sequence to create a dictionary for. - A function to extract a key from each element. - An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer. - - The type of the elements in the source sequence. - The type of the dictionary key computed for each element in the source sequence. - An observable sequence to create a dictionary for. - A function to extract a key from each element. - An equality comparer to compare keys. - An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function. - - The type of the elements in the source sequence. - The type of the dictionary key computed for each element in the source sequence. - The type of the dictionary value computed for each element in the source sequence. - An observable sequence to create a dictionary for. - A function to extract a key from each element. - A transform function to produce a result element value from each element. - An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function. - - The type of the elements in the source sequence. - The type of the dictionary key computed for each element in the source sequence. - The type of the dictionary value computed for each element in the source sequence. - An observable sequence to create a dictionary for. - A function to extract a key from each element. - A transform function to produce a result element value from each element. - An equality comparer to compare keys. - An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element. - or or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a list from an observable sequence. - - The type of the elements in the source sequence. - The source observable sequence to get a list of elements for. - An observable sequence containing a single element with a list containing all the elements of the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a lookup from an observable sequence according to a specified key selector function. - - The type of the elements in the source sequence. - The type of the lookup key computed for each element in the source sequence. - An observable sequence to create a lookup for. - A function to extract a key from each element. - An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a lookup from an observable sequence according to a specified key selector function, and a comparer. - - The type of the elements in the source sequence. - The type of the lookup key computed for each element in the source sequence. - An observable sequence to create a lookup for. - A function to extract a key from each element. - An equality comparer to compare keys. - An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function. - - The type of the elements in the source sequence. - The type of the lookup key computed for each element in the source sequence. - The type of the lookup value computed for each element in the source sequence. - An observable sequence to create a lookup for. - A function to extract a key from each element. - A transform function to produce a result element value from each element. - An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function. - - The type of the elements in the source sequence. - The type of the lookup key computed for each element in the source sequence. - The type of the lookup value computed for each element in the source sequence. - An observable sequence to create a lookup for. - A function to extract a key from each element. - A transform function to produce a result element value from each element. - An equality comparer to compare keys. - An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements. - or or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the thirteenth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the thirteenth argument passed to the begin delegate. - The type of the fourteenth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the thirteenth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the thirteenth argument passed to the begin delegate. - The type of the fourteenth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Invokes the specified function asynchronously, surfacing the result through an observable sequence. - - The type of the result returned by the function. - Function to run asynchronously. - An observable sequence exposing the function's result value, or an exception. - is null. - - - The function is called immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - - - - - Invokes the specified function asynchronously on the specified scheduler, surfacing the result through an observable sequence - - The type of the result returned by the function. - Function to run asynchronously. - Scheduler to run the function on. - An observable sequence exposing the function's result value, or an exception. - or is null. - - - The function is called immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - - - - - Invokes the asynchronous function, surfacing the result through an observable sequence. - - The type of the result returned by the asynchronous function. - Asynchronous function to run. - An observable sequence exposing the function's result value, or an exception. - is null. - - - The function is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - - - - - Invokes the asynchronous function, surfacing the result through an observable sequence. - - The type of the result returned by the asynchronous function. - Asynchronous function to run. - Scheduler on which to notify observers. - An observable sequence exposing the function's result value, or an exception. - is null or is null. - - - The function is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - - - - - Invokes the asynchronous function, surfacing the result through an observable sequence. - The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information. - - The type of the result returned by the asynchronous function. - Asynchronous function to run. - An observable sequence exposing the function's result value, or an exception. - is null. - - - The function is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed - subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator. - Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription - to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using - multicast operators. - - - - - - - Invokes the asynchronous function, surfacing the result through an observable sequence. - The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information. - - The type of the result returned by the asynchronous function. - Asynchronous function to run. - Scheduler on which to notify observers. - An observable sequence exposing the function's result value, or an exception. - is null or is null. - - - The function is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed - subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator. - Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription - to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using - multicast operators. - - - - - - - Invokes the action asynchronously, surfacing the result through an observable sequence. - - Action to run asynchronously. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null. - - - The action is called immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - - - - - Invokes the action asynchronously on the specified scheduler, surfacing the result through an observable sequence. - - Action to run asynchronously. - Scheduler to run the action on. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - or is null. - - - The action is called immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - - - - - Invokes the asynchronous action, surfacing the result through an observable sequence. - - Asynchronous action to run. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null. - - - The action is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - - - - - Invokes the asynchronous action, surfacing the result through an observable sequence. - - Asynchronous action to run. - Scheduler on which to notify observers. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null or is null. - - - The action is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - - - - - Invokes the asynchronous action, surfacing the result through an observable sequence. - The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information. - - Asynchronous action to run. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null. - - - The action is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed - subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator. - Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription - to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using - multicast operators. - - - - - - - Invokes the asynchronous action, surfacing the result through an observable sequence. - The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information. - - Asynchronous action to run. - Scheduler on which to notify observers. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null or is null. - - - The action is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed - subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator. - Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription - to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using - multicast operators. - - - - - - - Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started. - - The type of the result returned by the asynchronous function. - Asynchronous function to convert. - An observable sequence exposing the result of invoking the function, or an exception. - is null. - - - - Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started. - - The type of the result returned by the asynchronous function. - Asynchronous function to convert. - Scheduler on which to notify observers. - An observable sequence exposing the result of invoking the function, or an exception. - is null or is null. - - - - Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started. - The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation. - - The type of the result returned by the asynchronous function. - Asynchronous function to convert. - An observable sequence exposing the result of invoking the function, or an exception. - is null. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled. - - - - Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started. - The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation. - - The type of the result returned by the asynchronous function. - Asynchronous function to convert. - Scheduler on which to notify observers. - An observable sequence exposing the result of invoking the function, or an exception. - is null or is null. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled. - - - - Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started. - - Asynchronous action to convert. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null. - - - - Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started. - - Asynchronous action to convert. - Scheduler on which to notify observers. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null or is null. - - - - Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started. - The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation. - - Asynchronous action to convert. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled. - is null. - - - - Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started. - The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation. - - Asynchronous action to convert. - Scheduler on which to notify observers. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled. - is null or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the fifteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the fifteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the fifteenth argument passed to the function. - The type of the sixteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the fifteenth argument passed to the function. - The type of the sixteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - The type of the fifteenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - The type of the fifteenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - The type of the fifteenth argument passed to the action. - The type of the sixteenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - The type of the fifteenth argument passed to the action. - The type of the sixteenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty. - This operation subscribes to the observable sequence, making it hot. - - The type of the elements in the source sequence. - Source sequence to await. - Object that can be awaited. - is null. - - - - Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty. - This operation subscribes and connects to the observable sequence, making it hot. - - The type of the elements in the source sequence. - Source sequence to await. - Object that can be awaited. - is null. - - - - Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty. - This operation subscribes to the observable sequence, making it hot. The supplied CancellationToken can be used to cancel the subscription. - - The type of the elements in the source sequence. - Source sequence to await. - Cancellation token. - Object that can be awaited. - is null. - - - - Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty. - This operation subscribes and connects to the observable sequence, making it hot. The supplied CancellationToken can be used to cancel the subscription and connection. - - The type of the elements in the source sequence. - Source sequence to await. - Cancellation token. - Object that can be awaited. - is null. - - - - Multicasts the source sequence notifications through the specified subject to the resulting connectable observable. Upon connection of the - connectable observable, the subject is subscribed to the source exactly one, and messages are forwarded to the observers registered with - the connectable observable. For specializations with fixed subject types, see Publish, PublishLast, and Replay. - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be pushed into the specified subject. - Subject to push source elements into. - A connectable observable sequence that upon connection causes the source sequence to push results into the specified subject. - or is null. - - - - Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each - subscription to the resulting sequence causes a separate multicast invocation, exposing the sequence resulting from the selector function's - invocation. For specializations with fixed subject types, see Publish, PublishLast, and Replay. - - The type of the elements in the source sequence. - The type of the elements produced by the intermediate subject. - The type of the elements in the result sequence. - Source sequence which will be multicasted in the specified selector function. - Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function. - Selector function which can use the multicasted source sequence subject to the policies enforced by the created subject. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence. - This operator is a specialization of Multicast using a regular . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - Subscribers will receive all notifications of the source from the time of the subscription on. - - - - - 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. - This operator is a specialization of Multicast using a regular . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all notifications of the source from the time of the subscription on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Initial value received by observers upon subscription. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - Subscribers will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on. - - - - - 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. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on. - Initial value received by observers upon subscription. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - Subscribers will only receive the last notification of the source. - - - - - 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. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will only receive the last notification of the source. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - - - - - Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence. - - The type of the elements in the source sequence. - Connectable observable sequence. - An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence. - is null. - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - Subscribers will receive all the notifications of the source. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Scheduler where connected observers will be invoked on. - A connectable observable sequence that shares a single subscription to the underlying sequence. - or is null. - Subscribers will receive all the notifications of the source. - - - - - 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. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - - - - - 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. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source. - Scheduler where connected observers within the selector function will be invoked on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum time length of the replay buffer. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - is less than TimeSpan.Zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum time length for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum time length of the replay buffer. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - is less than TimeSpan.Zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum time length of the replay buffer. - Scheduler where connected observers will be invoked on. - A connectable observable sequence that shares a single subscription to the underlying sequence. - or is null. - is less than TimeSpan.Zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum time length for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum time length of the replay buffer. - Scheduler where connected observers within the selector function will be invoked on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - is less than TimeSpan.Zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum element count of the replay buffer. - Scheduler where connected observers will be invoked on. - A connectable observable sequence that shares a single subscription to the underlying sequence. - or is null. - is less than zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum element count of the replay buffer. - Scheduler where connected observers within the selector function will be invoked on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - is less than zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum element count of the replay buffer. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - is less than zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum element count of the replay buffer. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - is less than zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - is less than zero. - is less than TimeSpan.Zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum time length and element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - is less than zero. - is less than TimeSpan.Zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - Scheduler where connected observers will be invoked on. - A connectable observable sequence that shares a single subscription to the underlying sequence. - or is null. - is less than zero. - is less than TimeSpan.Zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum time length and element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - Scheduler where connected observers within the selector function will be invoked on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - is less than zero. - is less than TimeSpan.Zero. - - - - - Produces an enumerable sequence of consecutive (possibly empty) chunks of the source sequence. - - The type of the elements in the source sequence. - Source observable sequence. - The enumerable sequence that returns consecutive (possibly empty) chunks upon each iteration. - is null. - - - - Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations. - - The type of the elements in the source sequence. - The type of the elements produced by the merge operation during collection. - Source observable sequence. - Factory to create a new collector object. - Merges a sequence element with the current collector. - The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration. - or or is null. - - - - Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations. - - The type of the elements in the source sequence. - The type of the elements produced by the merge operation during collection. - Source observable sequence. - Factory to create the initial collector object. - Merges a sequence element with the current collector. - Factory to replace the current collector by a new collector. - The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration. - or or or is null. - - - - Returns the first element of an observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - The first element in the observable sequence. - is null. - The source sequence is empty. - - - - - Returns the first element of an observable sequence that satisfies the condition in the predicate. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The first element in the observable sequence that satisfies the condition in the predicate. - or is null. - No element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - - Returns the first element of an observable sequence, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - The first element in the observable sequence, or a default value if no such element exists. - is null. - - - - - Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - - - - - Invokes an action for each element in the observable sequence, and blocks until the sequence is terminated. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - or is null. - Because of its blocking nature, this operator is mainly used for testing. - - - - Invokes an action for each element in the observable sequence, incorporating the element's index, and blocks until the sequence is terminated. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - or is null. - Because of its blocking nature, this operator is mainly used for testing. - - - - Returns an enumerator that enumerates all values of the observable sequence. - - The type of the elements in the source sequence. - An observable sequence to get an enumerator for. - The enumerator that can be used to enumerate over the elements in the observable sequence. - is null. - - - - Returns the last element of an observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - The last element in the observable sequence. - is null. - The source sequence is empty. - - - - - Returns the last element of an observable sequence that satisfies the condition in the predicate. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The last element in the observable sequence that satisfies the condition in the predicate. - or is null. - No element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - - Returns the last element of an observable sequence, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - The last element in the observable sequence, or a default value if no such element exists. - is null. - - - - - Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - - - - - Returns an enumerable sequence whose enumeration returns the latest observed element in the source observable sequence. - Enumerators on the resulting sequence will never produce the same element repeatedly, and will block until the next element becomes available. - - The type of the elements in the source sequence. - Source observable sequence. - 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 an enumerable sequence whose enumeration returns the most recently observed element in the source observable sequence, using the specified initial value in case no element has been sampled yet. - Enumerators on the resulting sequence never block and can produce the same element repeatedly. - - The type of the elements in the source sequence. - Source observable sequence. - Initial value that will be yielded by the enumerable sequence if no element has been sampled yet. - The enumerable sequence that returns the last sampled element upon each iteration. - is null. - - - - Returns an enumerable sequence whose enumeration blocks until the next element in the source observable sequence becomes available. - Enumerators on the resulting sequence will block until the next element becomes available. - - The type of the elements in the source sequence. - Source observable sequence. - The enumerable sequence that blocks upon each iteration until the next element in the observable source sequence becomes available. - is null. - - - - Returns the only element of an observable sequence, and throws an exception if there is not exactly one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - The single element in the observable sequence. - is null. - The source sequence contains more than one element. -or- The source sequence is empty. - - - - - Returns the only element of an observable sequence that satisfies the condition in the predicate, and throws an exception if there is not exactly one element matching the predicate in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The single element in the observable sequence that satisfies the condition in the predicate. - or is null. - No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - - 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. - - The type of the elements in the source sequence. - Source observable sequence. - The single element in the observable sequence, or a default value if no such element exists. - is null. - The source sequence contains more than one element. - - - - - Returns the only element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists; this method throws an exception if there is more than one element matching the predicate in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - The sequence contains more than one element that satisfies the condition in the predicate. - - - - - Waits for the observable sequence to complete and returns the last element of the sequence. - If the sequence terminates with an OnError notification, the exception is thrown. - - The type of the elements in the source sequence. - Source observable sequence. - The last element in the observable sequence. - is null. - The source sequence is empty. - - - - Wraps the source sequence in order to run its observer callbacks on the specified scheduler. - - The type of the elements in the source sequence. - Source sequence. - Scheduler to notify observers on. - The source sequence whose observations happen on the specified scheduler. - or is null. - - This only invokes observer callbacks on a scheduler. In case the subscription and/or unsubscription actions have side-effects - that require to be run on a scheduler, use . - - - - - Wraps the source sequence in order to run its observer callbacks on the specified synchronization context. - - The type of the elements in the source sequence. - Source sequence. - Synchronization context to notify observers on. - The source sequence whose observations happen on the specified synchronization context. - or is null. - - This only invokes observer callbacks on a synchronization context. In case the subscription and/or unsubscription actions have side-effects - that require to be run on a synchronization context, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. This operation is not commonly used; - see the remarks section for more information on the distinction between SubscribeOn and ObserveOn. - - The type of the elements in the source sequence. - Source sequence. - Scheduler to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler. - or is null. - - This only performs the side-effects of subscription and unsubscription on the specified scheduler. In order to invoke observer - callbacks on a scheduler, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified synchronization context. This operation is not commonly used; - see the remarks section for more information on the distinction between SubscribeOn and ObserveOn. - - The type of the elements in the source sequence. - Source sequence. - Synchronization context to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context. - or is null. - - This only performs the side-effects of subscription and unsubscription on the specified synchronization context. In order to invoke observer - callbacks on a synchronization context, use . - - - - - Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently. - This overload is useful to "fix" an observable sequence that exhibits concurrent callbacks on individual observers, which is invalid behavior for the query processor. - - The type of the elements in the source sequence. - Source sequence. - The source sequence whose outgoing calls to observers are synchronized. - is null. - - It's invalid behavior - according to the observer grammar - for a sequence to exhibit concurrent callbacks on a given observer. - This operator can be used to "fix" a source that doesn't conform to this rule. - - - - - Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently, using the specified gate object. - This overload is useful when writing n-ary query operators, in order to prevent concurrent callbacks from different sources by synchronizing on a common gate object. - - The type of the elements in the source sequence. - Source sequence. - Gate object to synchronize each observer call on. - The source sequence whose outgoing calls to observers are synchronized on the given gate object. - or is null. - - - - Subscribes an observer to an enumerable sequence. - - The type of the elements in the source sequence. - Enumerable sequence to subscribe to. - Observer that will receive notifications from the enumerable sequence. - Disposable object that can be used to unsubscribe the observer from the enumerable - or is null. - - - - Subscribes an observer to an enumerable sequence, using the specified scheduler to run the enumeration loop. - - The type of the elements in the source sequence. - Enumerable sequence to subscribe to. - Observer that will receive notifications from the enumerable sequence. - Scheduler to perform the enumeration on. - Disposable object that can be used to unsubscribe the observer from the enumerable - or or is null. - - - - Converts an observable sequence to an enumerable sequence. - - The type of the elements in the source sequence. - An observable sequence to convert to an enumerable sequence. - The enumerable sequence containing the elements in the observable sequence. - is null. - - - - Exposes an observable sequence as an object with an Action-based .NET event. - - Observable source sequence. - The event source object. - is null. - - - - Exposes an observable sequence as an object with an Action<TSource>-based .NET event. - - The type of the elements in the source sequence. - Observable source sequence. - The event source object. - is null. - - - - Exposes an observable sequence as an object with a .NET event, conforming to the standard .NET event pattern. - - The type of the event data generated by the event. - Observable source sequence. - The event source object. - is null. - - - - Converts an enumerable sequence to an observable sequence. - - The type of the elements in the source sequence. - Enumerable sequence to convert to an observable sequence. - The observable sequence whose elements are pulled from the given enumerable sequence. - is null. - - - - Converts an enumerable sequence to an observable sequence, using the specified scheduler to run the enumeration loop. - - The type of the elements in the source sequence. - Enumerable sequence to convert to an observable sequence. - Scheduler to run the enumeration of the input sequence on. - The observable sequence whose elements are pulled from the given enumerable sequence. - or is null. - - - - Creates an observable sequence from a specified Subscribe method implementation. - - The type of the elements in the produced sequence. - Implementation of the resulting observable sequence's Subscribe method. - The observable sequence with the specified implementation for the Subscribe method. - is null. - - Use of this operator is preferred over manual implementation of the IObservable<T> interface. In case - you need a type implementing IObservable<T> rather than an anonymous implementation, consider using - the abstract base class. - - - - - Creates an observable sequence from a specified Subscribe method implementation. - - The type of the elements in the produced sequence. - Implementation of the resulting observable sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable. - The observable sequence with the specified implementation for the Subscribe method. - is null. - - Use of this operator is preferred over manual implementation of the IObservable<T> interface. In case - you need a type implementing IObservable<T> rather than an anonymous implementation, consider using - the abstract base class. - - - - - Creates an observable sequence from a specified cancellable asynchronous Subscribe method. - The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation. - - The type of the elements in the produced sequence. - Asynchronous method used to produce elements. - The observable sequence surfacing the elements produced by the asynchronous method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled. - - - - Creates an observable sequence from a specified asynchronous Subscribe method. - - The type of the elements in the produced sequence. - Asynchronous method used to produce elements. - The observable sequence surfacing the elements produced by the asynchronous method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Creates an observable sequence from a specified cancellable asynchronous Subscribe method. - The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation. - - The type of the elements in the produced sequence. - Asynchronous method used to implement the resulting sequence's Subscribe method. - The observable sequence with the specified implementation for the Subscribe method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled. - - - - Creates an observable sequence from a specified asynchronous Subscribe method. - - The type of the elements in the produced sequence. - Asynchronous method used to implement the resulting sequence's Subscribe method. - The observable sequence with the specified implementation for the Subscribe method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Creates an observable sequence from a specified cancellable asynchronous Subscribe method. - The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation. - - The type of the elements in the produced sequence. - Asynchronous method used to implement the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable. - The observable sequence with the specified implementation for the Subscribe method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled. - - - - Creates an observable sequence from a specified asynchronous Subscribe method. - - The type of the elements in the produced sequence. - Asynchronous method used to implement the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable. - The observable sequence with the specified implementation for the Subscribe method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes. - - The type of the elements in the sequence returned by the factory function, and in the resulting sequence. - Observable factory function to invoke for each observer that subscribes to the resulting sequence. - An observable sequence whose observers trigger an invocation of the given observable factory function. - is null. - - - - Returns an observable sequence that starts the specified asynchronous factory function whenever a new observer subscribes. - - The type of the elements in the sequence returned by the factory function, and in the resulting sequence. - Asynchronous factory function to start for each observer that subscribes to the resulting sequence. - An observable sequence whose observers trigger the given asynchronous observable factory function to be started. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Returns an observable sequence that starts the specified cancellable asynchronous factory function whenever a new observer subscribes. - The CancellationToken passed to the asynchronous factory function is tied to the returned disposable subscription, allowing best-effort cancellation. - - The type of the elements in the sequence returned by the factory function, and in the resulting sequence. - Asynchronous factory function to start for each observer that subscribes to the resulting sequence. - An observable sequence whose observers trigger the given asynchronous observable factory function to be started. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous observable factory function will be signaled. - - - - Returns an empty observable sequence. - - The type used for the IObservable<T> type parameter of the resulting sequence. - An observable sequence with no elements. - - - - Returns an empty observable sequence. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - An observable sequence with no elements. - - - - Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Scheduler to send the termination call on. - An observable sequence with no elements. - is null. - - - - Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Scheduler to send the termination call on. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - An observable sequence with no elements. - is null. - - - - Generates an observable sequence by running a state-driven loop producing the sequence's elements. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - The generated sequence. - or or is null. - - - - Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Scheduler on which to run the generator loop. - The generated sequence. - or or or is null. - - - - Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins). - - The type used for the IObservable<T> type parameter of the resulting sequence. - An observable sequence whose observers will never get called. - - - - Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins). - - The type used for the IObservable<T> type parameter of the resulting sequence. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - An observable sequence whose observers will never get called. - - - - Generates an observable sequence of integral numbers within a specified range. - - The value of the first integer in the sequence. - The number of sequential integers to generate. - An observable sequence that contains a range of sequential integral numbers. - is less than zero. -or- + - 1 is larger than . - - - - Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to send out observer messages. - - The value of the first integer in the sequence. - The number of sequential integers to generate. - Scheduler to run the generator loop on. - An observable sequence that contains a range of sequential integral numbers. - is less than zero. -or- + - 1 is larger than . - is null. - - - - Generates an observable sequence that repeats the given element infinitely. - - The type of the element that will be repeated in the produced sequence. - Element to repeat. - An observable sequence that repeats the given element infinitely. - - - - Generates an observable sequence that repeats the given element infinitely, using the specified scheduler to send out observer messages. - - The type of the element that will be repeated in the produced sequence. - Element to repeat. - Scheduler to run the producer loop on. - An observable sequence that repeats the given element infinitely. - is null. - - - - Generates an observable sequence that repeats the given element the specified number of times. - - The type of the element that will be repeated in the produced sequence. - Element to repeat. - Number of times to repeat the element. - An observable sequence that repeats the given element the specified number of times. - is less than zero. - - - - Generates an observable sequence that repeats the given element the specified number of times, using the specified scheduler to send out observer messages. - - The type of the element that will be repeated in the produced sequence. - Element to repeat. - Number of times to repeat the element. - Scheduler to run the producer loop on. - An observable sequence that repeats the given element the specified number of times. - is less than zero. - is null. - - - - Returns an observable sequence that contains a single element. - - The type of the element that will be returned in the produced sequence. - Single element in the resulting observable sequence. - An observable sequence containing the single specified element. - - - - Returns an observable sequence that contains a single element, using the specified scheduler to send out observer messages. - - The type of the element that will be returned in the produced sequence. - Single element in the resulting observable sequence. - Scheduler to send the single element on. - An observable sequence containing the single specified element. - is null. - - - - Returns an observable sequence that terminates with an exception. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Exception object used for the sequence's termination. - The observable sequence that terminates exceptionally with the specified exception object. - is null. - - - - Returns an observable sequence that terminates with an exception. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Exception object used for the sequence's termination. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - The observable sequence that terminates exceptionally with the specified exception object. - is null. - - - - Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Exception object used for the sequence's termination. - Scheduler to send the exceptional termination call on. - The observable sequence that terminates exceptionally with the specified exception object. - or is null. - - - - Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Exception object used for the sequence's termination. - Scheduler to send the exceptional termination call on. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - The observable sequence that terminates exceptionally with the specified exception object. - or is null. - - - - Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. - - The type of the elements in the produced sequence. - The type of the resource used during the generation of the resulting sequence. Needs to implement . - Factory function to obtain a resource object. - Factory function to obtain an observable sequence that depends on the obtained resource. - An observable sequence whose lifetime controls the lifetime of the dependent resource object. - or is null. - - - - Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. The resource is obtained and used through asynchronous methods. - The CancellationToken passed to the asynchronous methods is tied to the returned disposable subscription, allowing best-effort cancellation at any stage of the resource acquisition or usage. - - The type of the elements in the produced sequence. - The type of the resource used during the generation of the resulting sequence. Needs to implement . - Asynchronous factory function to obtain a resource object. - Asynchronous factory function to obtain an observable sequence that depends on the obtained resource. - An observable sequence whose lifetime controls the lifetime of the dependent resource object. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous resource factory and observable factory functions will be signaled. - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the sender that raises the event. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the sender that raises the event. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Object instance that exposes the event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Object instance that exposes the event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Object instance that exposes the event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Object instance that exposes the event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the sender that raises the event. - The type of the event data generated by the event. - Object instance that exposes the event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the sender that raises the event. - The type of the event data generated by the event. - Object instance that exposes the event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Type that exposes the static event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Type that exposes the static event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Type that exposes the static event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Type that exposes the static event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the sender that raises the event. - The type of the event data generated by the event. - Type that exposes the static event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the sender that raises the event. - The type of the event data generated by the event. - Type that exposes the static event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEvent, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEvent, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEvent, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEvent, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Invokes an action for each element in the observable sequence, and returns a Task object that will get signaled when the sequence terminates. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Task that signals the termination of the sequence. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Invokes an action for each element in the observable sequence, and returns a Task object that will get signaled when the sequence terminates. - The loop can be quit prematurely by setting the specified cancellation token. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Cancellation token used to stop the loop. - Task that signals the termination of the sequence. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Invokes an action for each element in the observable sequence, incorporating the element's index, and returns a Task object that will get signaled when the sequence terminates. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Task that signals the termination of the sequence. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Invokes an action for each element in the observable sequence, incorporating the element's index, and returns a Task object that will get signaled when the sequence terminates. - The loop can be quit prematurely by setting the specified cancellation token. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Cancellation token used to stop the loop. - Task that signals the termination of the sequence. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Uses to determine which source in to return, choosing if no match is found. - - The type of the value returned by the selector function, used to look up the resulting source. - The type of the elements in the result sequence. - Selector function invoked to determine the source to lookup in the dictionary. - Dictionary of sources to select from based on the invocation result. - Default source to select in case no matching source in is found. - The observable sequence retrieved from the dictionary based on the invocation result, or if no match is found. - or or is null. - - - - Uses to determine which source in to return, choosing an empty sequence on the specified scheduler if no match is found. - - The type of the value returned by the selector function, used to look up the resulting source. - The type of the elements in the result sequence. - Selector function invoked to determine the source to lookup in the dictionary. - Dictionary of sources to select from based on the invocation result. - Scheduler to generate an empty sequence on in case no matching source in is found. - The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found. - or or is null. - - - - Uses to determine which source in to return, choosing an empty sequence if no match is found. - - The type of the value returned by the selector function, used to look up the resulting source. - The type of the elements in the result sequence. - Selector function invoked to determine the source to lookup in the dictionary. - Dictionary of sources to select from based on the invocation result. - The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found. - or is null. - - - - Repeats the given as long as the specified holds, where the is evaluated after each repeated completed. - - The type of the elements in the source sequence. - Source to repeat as long as the function evaluates to true. - Condition that will be evaluated upon the completion of an iteration through the , to determine whether repetition of the source is required. - The observable sequence obtained by concatenating the sequence as long as the holds. - or is null. - - - - Concatenates the observable sequences obtained by running the for each element in the given enumerable . - - The type of the elements in the enumerable source sequence. - The type of the elements in the observable result sequence. - Enumerable source for which each element will be mapped onto an observable source that will be concatenated in the result sequence. - Function to select an observable source for each element in the . - The observable sequence obtained by concatenating the sources returned by for each element in the . - or is null. - - - - If the specified evaluates true, select the sequence. Otherwise, select the sequence. - - The type of the elements in the result sequence. - Condition evaluated to decide which sequence to return. - Sequence returned in case evaluates true. - Sequence returned in case evaluates false. - if evaluates true; otherwise. - or or is null. - - - - If the specified evaluates true, select the sequence. Otherwise, return an empty sequence. - - The type of the elements in the result sequence. - Condition evaluated to decide which sequence to return. - Sequence returned in case evaluates true. - if evaluates true; an empty sequence otherwise. - or is null. - - - - If the specified evaluates true, select the sequence. Otherwise, return an empty sequence generated on the specified scheduler. - - The type of the elements in the result sequence. - Condition evaluated to decide which sequence to return. - Sequence returned in case evaluates true. - Scheduler to generate an empty sequence on in case evaluates false. - if evaluates true; an empty sequence otherwise. - or or is null. - - - - Repeats the given as long as the specified holds, where the is evaluated before each repeated is subscribed to. - - The type of the elements in the source sequence. - Source to repeat as long as the function evaluates to true. - Condition that will be evaluated before subscription to the , to determine whether repetition of the source is required. - The observable sequence obtained by concatenating the sequence as long as the holds. - or is null. - - - - Creates a pattern that matches when both observable sequences have an available element. - - The type of the elements in the left sequence. - The type of the elements in the right sequence. - Observable sequence to match with the right sequence. - Observable sequence to match with the left sequence. - Pattern object that matches when both observable sequences have an available element. - or is null. - - - - Matches when the observable sequence has an available element and projects the element by invoking the selector function. - - The type of the elements in the source sequence. - The type of the elements in the result sequence, returned by the selector function. - Observable sequence to apply the selector on. - Selector that will be invoked for elements in the source sequence. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - or is null. - - - - Joins together the results from several patterns. - - The type of the elements in the result sequence, obtained from the specified patterns. - A series of plans created by use of the Then operator on patterns. - An observable sequence with the results from matching several patterns. - is null. - - - - Joins together the results from several patterns. - - The type of the elements in the result sequence, obtained from the specified patterns. - A series of plans created by use of the Then operator on patterns. - An observable sequence with the results form matching several patterns. - is null. - - - - Propagates the observable sequence that reacts first. - - The type of the elements in the source sequences. - First observable sequence. - Second observable sequence. - An observable sequence that surfaces either of the given sequences, whichever reacted first. - or is null. - - - - Propagates the observable sequence that reacts first. - - The type of the elements in the source sequences. - Observable sources competing to react first. - An observable sequence that surfaces any of the given sequences, whichever reacted first. - is null. - - - - Propagates the observable sequence that reacts first. - - The type of the elements in the source sequences. - Observable sources competing to react first. - An observable sequence that surfaces any of the given sequences, whichever reacted first. - is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - The type of the elements in the sequences indicating buffer closing events. - Source sequence to produce buffers over. - A function invoked to define the boundaries of the produced buffers. A new buffer is started when the previous one is closed. - An observable sequence of buffers. - or is null. - - - - Projects each element of an observable sequence into zero or more buffers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - The type of the elements in the sequence indicating buffer opening events, also passed to the closing selector to obtain a sequence of buffer closing events. - The type of the elements in the sequences indicating buffer closing events. - Source sequence to produce buffers over. - Observable sequence whose elements denote the creation of new buffers. - A function invoked to define the closing of each produced buffer. - An observable sequence of buffers. - or or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - The type of the elements in the sequences indicating buffer boundary events. - Source sequence to produce buffers over. - Sequence of buffer boundary markers. The current buffer is closed and a new buffer is opened upon receiving a boundary marker. - An observable sequence of buffers. - or is null. - - - - Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler. - - The type of the elements in the source sequence and sequences returned by the exception handler function. - The type of the exception to catch and handle. Needs to derive from . - Source sequence. - Exception handler function, producing another observable sequence. - An observable sequence containing the source sequence's elements, followed by the elements produced by the handler's resulting observable sequence in case an exception occurred. - or is null. - - - - Continues an observable sequence that is terminated by an exception with the next observable sequence. - - The type of the elements in the source sequence and handler sequence. - First observable sequence whose exception (if any) is caught. - Second observable sequence used to produce results when an error occurred in the first sequence. - An observable sequence containing the first sequence's elements, followed by the elements of the second sequence in case an exception occurred. - or is null. - - - - Continues an observable sequence that is terminated by an exception with the next observable sequence. - - The type of the elements in the source and handler sequences. - Observable sequences to catch exceptions for. - An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully. - is null. - - - - Continues an observable sequence that is terminated by an exception with the next observable sequence. - - The type of the elements in the source and handler sequences. - Observable sequences to catch exceptions for. - An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully. - is null. - - - - Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Function to invoke whenever either of the sources produces an element. - An observable sequence containing the result of combining elements of both sources using the specified result selector function. - or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Fifteenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the sixteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Fifteenth observable source. - Sixteenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the source sequences. - The type of the elements in the result sequence, returned by the selector function. - Observable sources. - Function to invoke whenever any of the sources produces an element. For efficiency, the input list is reused after the selector returns. Either aggregate or copy the values during the function call. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or is null. - - - - Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element. - - The type of the elements in the source sequences, and in the lists in the result sequence. - Observable sources. - An observable sequence containing lists of the latest elements of the sources. - is null. - - - - Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element. - - The type of the elements in the source sequences, and in the lists in the result sequence. - Observable sources. - An observable sequence containing lists of the latest elements of the sources. - is null. - - - - Concatenates the second observable sequence to the first observable sequence upon successful termination of the first. - - The type of the elements in the source sequences. - First observable sequence. - Second observable sequence. - An observable sequence that contains the elements of the first sequence, followed by those of the second the sequence. - or is null. - - - - Concatenates all of the specified observable sequences, as long as the previous observable sequence terminated successfully. - - The type of the elements in the source sequences. - Observable sequences to concatenate. - An observable sequence that contains the elements of each given sequence, in sequential order. - is null. - - - - Concatenates all observable sequences in the given enumerable sequence, as long as the previous observable sequence terminated successfully. - - The type of the elements in the source sequences. - Observable sequences to concatenate. - An observable sequence that contains the elements of each given sequence, in sequential order. - is null. - - - - Concatenates all inner observable sequences, as long as the previous observable sequence terminated successfully. - - The type of the elements in the source sequences. - Observable sequence of inner observable sequences. - An observable sequence that contains the elements of each observed inner sequence, in sequential order. - is null. - - - - Concatenates all task results, as long as the previous task terminated successfully. - - The type of the results produced by the tasks. - Observable sequence of tasks. - An observable sequence that contains the results of each task, in sequential order. - is null. - If the tasks support cancellation, consider manual conversion of the tasks using , followed by a concatenation operation using . - - - - Merges elements from all inner observable sequences into a single observable sequence. - - The type of the elements in the source sequences. - Observable sequence of inner observable sequences. - The observable sequence that merges the elements of the inner sequences. - is null. - - - - Merges results from all source tasks into a single observable sequence. - - The type of the results produced by the source tasks. - Observable sequence of tasks. - The observable sequence that merges the results of the source tasks. - is null. - If the tasks support cancellation, consider manual conversion of the tasks using , followed by a merge operation using . - - - - Merges elements from all inner observable sequences into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences. - - The type of the elements in the source sequences. - Observable sequence of inner observable sequences. - Maximum number of inner observable sequences being subscribed to concurrently. - The observable sequence that merges the elements of the inner sequences. - is null. - is less than or equal to zero. - - - - Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences. - - The type of the elements in the source sequences. - Enumerable sequence of observable sequences. - Maximum number of observable sequences being subscribed to concurrently. - The observable sequence that merges the elements of the observable sequences. - is null. - is less than or equal to zero. - - - - Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences, and using the specified scheduler for enumeration of and subscription to the sources. - - The type of the elements in the source sequences. - Enumerable sequence of observable sequences. - Maximum number of observable sequences being subscribed to concurrently. - Scheduler to run the enumeration of the sequence of sources on. - The observable sequence that merges the elements of the observable sequences. - or is null. - is less than or equal to zero. - - - - Merges elements from two observable sequences into a single observable sequence. - - The type of the elements in the source sequences. - First observable sequence. - Second observable sequence. - The observable sequence that merges the elements of the given sequences. - or is null. - - - - Merges elements from two observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources. - - The type of the elements in the source sequences. - First observable sequence. - Second observable sequence. - Scheduler used to introduce concurrency for making subscriptions to the given sequences. - The observable sequence that merges the elements of the given sequences. - or or is null. - - - - Merges elements from all of the specified observable sequences into a single observable sequence. - - The type of the elements in the source sequences. - Observable sequences. - The observable sequence that merges the elements of the observable sequences. - is null. - - - - Merges elements from all of the specified observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources. - - The type of the elements in the source sequences. - Observable sequences. - Scheduler to run the enumeration of the sequence of sources on. - The observable sequence that merges the elements of the observable sequences. - or is null. - - - - Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence. - - The type of the elements in the source sequences. - Enumerable sequence of observable sequences. - The observable sequence that merges the elements of the observable sequences. - is null. - - - - Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources. - - The type of the elements in the source sequences. - Enumerable sequence of observable sequences. - Scheduler to run the enumeration of the sequence of sources on. - The observable sequence that merges the elements of the observable sequences. - or is null. - - - - Concatenates the second observable sequence to the first observable sequence upon successful or exceptional termination of the first. - - The type of the elements in the source sequences. - First observable sequence whose exception (if any) is caught. - Second observable sequence used to produce results after the first sequence terminates. - An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally. - or is null. - - - - Concatenates all of the specified observable sequences, even if the previous observable sequence terminated exceptionally. - - The type of the elements in the source sequences. - Observable sequences to concatenate. - An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally. - is null. - - - - Concatenates all observable sequences in the given enumerable sequence, even if the previous observable sequence terminated exceptionally. - - The type of the elements in the source sequences. - Observable sequences to concatenate. - An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally. - is null. - - - - Returns the elements from the source observable sequence only after the other observable sequence produces an element. - - The type of the elements in the source sequence. - The type of the elements in the other sequence that indicates the end of skip behavior. - Source sequence to propagate elements for. - Observable sequence that triggers propagation of elements of the source sequence. - An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation. - or is null. - - - - Transforms an observable sequence of observable sequences into an observable sequence - producing values only from the most recent observable sequence. - Each time a new inner observable sequence is received, unsubscribe from the - previous inner observable sequence. - - The type of the elements in the source sequences. - Observable sequence of inner observable sequences. - The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received. - is null. - - - - Transforms an observable sequence of tasks into an observable sequence - producing values only from the most recent observable sequence. - Each time a new task is received, the previous task's result is ignored. - - The type of the results produced by the source tasks. - Observable sequence of tasks. - The observable sequence that at any point in time produces the result of the most recent task that has been received. - is null. - If the tasks support cancellation, consider manual conversion of the tasks using , followed by a switch operation using . - - - - Returns the elements from the source observable sequence until the other observable sequence produces an element. - - The type of the elements in the source sequence. - The type of the elements in the other sequence that indicates the end of take behavior. - Source sequence to propagate elements for. - Observable sequence that terminates propagation of elements of the source sequence. - An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation. - or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping windows. - - The type of the elements in the source sequence, and in the windows in the result sequence. - The type of the elements in the sequences indicating window closing events. - Source sequence to produce windows over. - A function invoked to define the boundaries of the produced windows. A new window is started when the previous one is closed. - An observable sequence of windows. - or is null. - - - - Projects each element of an observable sequence into zero or more windows. - - The type of the elements in the source sequence, and in the windows in the result sequence. - The type of the elements in the sequence indicating window opening events, also passed to the closing selector to obtain a sequence of window closing events. - The type of the elements in the sequences indicating window closing events. - Source sequence to produce windows over. - Observable sequence whose elements denote the creation of new windows. - A function invoked to define the closing of each produced window. - An observable sequence of windows. - or or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping windows. - - The type of the elements in the source sequence, and in the windows in the result sequence. - The type of the elements in the sequences indicating window boundary events. - Source sequence to produce windows over. - Sequence of window boundary markers. The current window is closed and a new window is opened upon receiving a boundary marker. - An observable sequence of windows. - or is null. - - - - Merges two observable sequences into one observable sequence by combining each element from the first source with the latest element from the second source, if any. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Function to invoke for each element from the first source combined with the latest element from the second source, if any. - An observable sequence containing the result of combining each element of the first source with the latest element from the second source, if any, using the specified result selector function. - or or is null. - - - - Merges two observable sequences into one observable sequence by combining their elements in a pairwise fashion. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Function to invoke for each consecutive pair of elements from the first and second source. - An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function. - or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Fifteenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the sixteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Fifteenth observable source. - Sixteenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the source sequences. - The type of the elements in the result sequence, returned by the selector function. - Observable sources. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or is null. - - - - Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes. - - The type of the elements in the source sequences, and in the lists in the result sequence. - Observable sources. - An observable sequence containing lists of elements at corresponding indexes. - is null. - - - - Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes. - - The type of the elements in the source sequences, and in the lists in the result sequence. - Observable sources. - An observable sequence containing lists of elements at corresponding indexes. - is null. - - - - Merges an observable sequence and an enumerable sequence into one observable sequence by using the selector function. - - The type of the elements in the first observable source sequence. - The type of the elements in the second enumerable source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second enumerable source. - Function to invoke for each consecutive pair of elements from the first and second source. - An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function. - or or is null. - - - - Hides the identity of an observable sequence. - - The type of the elements in the source sequence. - An observable sequence whose identity to hide. - An observable sequence that hides the identity of the source sequence. - is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - An observable sequence of buffers. - is null. - is less than or equal to zero. - - - - Projects each element of an observable sequence into zero or more buffers which are produced based on element count information. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - Number of elements to skip between creation of consecutive buffers. - An observable sequence of buffers. - is null. - or is less than or equal to zero. - - - - Dematerializes the explicit notification values of an observable sequence as implicit notifications. - - The type of the elements materialized in the source sequence notification objects. - An observable sequence containing explicit notification values which have to be turned into implicit notifications. - An observable sequence exhibiting the behavior corresponding to the source sequence's notification values. - is null. - - - - Returns an observable sequence that contains only distinct contiguous elements. - - The type of the elements in the source sequence. - An observable sequence to retain distinct contiguous elements for. - An observable sequence only containing the distinct contiguous elements from the source sequence. - is null. - - - - Returns an observable sequence that contains only distinct contiguous elements according to the comparer. - - The type of the elements in the source sequence. - An observable sequence to retain distinct contiguous elements for. - Equality comparer for source elements. - An observable sequence only containing the distinct contiguous elements from the source sequence. - or is null. - - - - Returns an observable sequence that contains only distinct contiguous elements according to the keySelector. - - The type of the elements in the source sequence. - The type of the discriminator key computed for each element in the source sequence. - An observable sequence to retain distinct contiguous elements for, based on a computed key value. - A function to compute the comparison key for each element. - An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence. - or is null. - - - - Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer. - - The type of the elements in the source sequence. - The type of the discriminator key computed for each element in the source sequence. - An observable sequence to retain distinct contiguous elements for, based on a computed key value. - A function to compute the comparison key for each element. - Equality comparer for computed key values. - An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence. - or or is null. - - - - Invokes an action for each element in the observable sequence, and propagates all observer messages through the result sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - The source sequence with the side-effecting behavior applied. - or is null. - - - - Invokes an action for each element in the observable sequence and invokes an action upon graceful termination of the observable sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - The source sequence with the side-effecting behavior applied. - or or is null. - - - - Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - The source sequence with the side-effecting behavior applied. - or or is null. - - - - Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - The source sequence with the side-effecting behavior applied. - or or or is null. - - - - Invokes the observer's methods for each message in the source sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Observer whose methods to invoke as part of the source sequence's observation. - The source sequence with the side-effecting behavior applied. - or is null. - - - - Invokes a specified action after the source observable sequence terminates gracefully or exceptionally. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke after the source observable sequence terminates. - Source sequence with the action-invoking termination behavior applied. - or is null. - - - - Ignores all elements in an observable sequence leaving only the termination messages. - - The type of the elements in the source sequence. - Source sequence. - An empty observable sequence that signals termination, successful or exceptional, of the source sequence. - is null. - - - - Materializes the implicit notifications of an observable sequence as explicit notification values. - - The type of the elements in the source sequence. - An observable sequence to get notification values for. - An observable sequence containing the materialized notification values from the source sequence. - is null. - - - - Repeats the observable sequence indefinitely. - - The type of the elements in the source sequence. - Observable sequence to repeat. - The observable sequence producing the elements of the given sequence repeatedly and sequentially. - is null. - - - - Repeats the observable sequence a specified number of times. - - The type of the elements in the source sequence. - Observable sequence to repeat. - Number of times to repeat the sequence. - The observable sequence producing the elements of the given sequence repeatedly. - is null. - is less than zero. - - - - Repeats the source observable sequence until it successfully terminates. - - The type of the elements in the source sequence. - Observable sequence to repeat until it successfully terminates. - An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully. - is null. - - - - Repeats the source observable sequence the specified number of times or until it successfully terminates. - - The type of the elements in the source sequence. - Observable sequence to repeat until it successfully terminates. - Number of times to repeat the sequence. - An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully. - is null. - is less than zero. - - - - Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value. - For aggregation behavior with no intermediate results, see . - - The type of the elements in the source sequence. - The type of the result of the aggregation. - An observable sequence to accumulate over. - The initial accumulator value. - An accumulator function to be invoked on each element. - An observable sequence containing the accumulated values. - or is null. - - - - Applies an accumulator function over an observable sequence and returns each intermediate result. - For aggregation behavior with no intermediate results, see . - - The type of the elements in the source sequence and the result of the aggregation. - An observable sequence to accumulate over. - An accumulator function to be invoked on each element. - An observable sequence containing the accumulated values. - or is null. - - - - Bypasses a specified number of elements at the end of an observable sequence. - - The type of the elements in the source sequence. - Source sequence. - Number of elements to bypass at the end of the source sequence. - An observable sequence containing the source sequence elements except for the bypassed ones at the end. - is null. - is less than zero. - - This operator accumulates a queue with a length enough to store the first elements. As more elements are - received, elements are taken from the front of the queue and produced on the result sequence. This causes elements to be delayed. - - - - - Prepends a sequence of values to an observable sequence. - - The type of the elements in the source sequence. - Source sequence to prepend values to. - Values to prepend to the specified sequence. - The source sequence prepended with the specified values. - or is null. - - - - Prepends a sequence of values to an observable sequence. - - The type of the elements in the source sequence. - Source sequence to prepend values to. - Values to prepend to the specified sequence. - The source sequence prepended with the specified values. - or is null. - - - - Prepends a sequence of values to an observable sequence. - - The type of the elements in the source sequence. - Source sequence to prepend values to. - Scheduler to emit the prepended values on. - Values to prepend to the specified sequence. - The source sequence prepended with the specified values. - or or is null. - - - - Prepends a sequence of values to an observable sequence. - - The type of the elements in the source sequence. - Source sequence to prepend values to. - Scheduler to emit the prepended values on. - Values to prepend to the specified sequence. - The source sequence prepended with the specified values. - or or is null. - - - - Returns a specified number of contiguous elements from the end of an observable sequence. - - The type of the elements in the source sequence. - Source sequence. - Number of elements to take from the end of the source sequence. - An observable sequence containing the specified number of elements from the end of the source sequence. - is null. - is less than zero. - - This operator accumulates a buffer with a length enough to store elements elements. Upon completion of - the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed. - - - - - Returns a specified number of contiguous elements from the end of an observable sequence, using the specified scheduler to drain the queue. - - The type of the elements in the source sequence. - Source sequence. - Number of elements to take from the end of the source sequence. - Scheduler used to drain the queue upon completion of the source sequence. - An observable sequence containing the specified number of elements from the end of the source sequence. - or is null. - is less than zero. - - This operator accumulates a buffer with a length enough to store elements elements. Upon completion of - the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed. - - - - - Returns a list with the specified number of contiguous elements from the end of an observable sequence. - - The type of the elements in the source sequence. - Source sequence. - Number of elements to take from the end of the source sequence. - An observable sequence containing a single list with the specified number of elements from the end of the source sequence. - is null. - is less than zero. - - This operator accumulates a buffer with a length enough to store elements. Upon completion of the - source sequence, this buffer is produced on the result sequence. - - - - - Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - An observable sequence of windows. - is null. - is less than or equal to zero. - - - - Projects each element of an observable sequence into zero or more windows which are produced based on element count information. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - Number of elements to skip between creation of consecutive windows. - An observable sequence of windows. - is null. - or is less than or equal to zero. - - - - Converts the elements of an observable sequence to the specified type. - - The type to convert the elements in the source sequence to. - The observable sequence that contains the elements to be converted. - An observable sequence that contains each element of the source sequence converted to the specified type. - is null. - - - - Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty. - - The type of the elements in the source sequence (if any), whose default value will be taken if the sequence is empty. - The sequence to return a default value for if it is empty. - An observable sequence that contains the default value for the TSource type if the source is empty; otherwise, the elements of the source itself. - is null. - - - - Returns the elements of the specified sequence or the specified value in a singleton sequence if the sequence is empty. - - The type of the elements in the source sequence (if any), and the specified default value which will be taken if the sequence is empty. - The sequence to return the specified value for if it is empty. - The value to return if the sequence is empty. - An observable sequence that contains the specified default value if the source is empty; otherwise, the elements of the source itself. - is null. - - - - Returns an observable sequence that contains only distinct elements. - - The type of the elements in the source sequence. - An observable sequence to retain distinct elements for. - An observable sequence only containing the distinct elements from the source sequence. - is null. - Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. - - - - Returns an observable sequence that contains only distinct elements according to the comparer. - - The type of the elements in the source sequence. - An observable sequence to retain distinct elements for. - Equality comparer for source elements. - An observable sequence only containing the distinct elements from the source sequence. - or is null. - Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. - - - - Returns an observable sequence that contains only distinct elements according to the keySelector. - - The type of the elements in the source sequence. - The type of the discriminator key computed for each element in the source sequence. - An observable sequence to retain distinct elements for. - A function to compute the comparison key for each element. - An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence. - or is null. - Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. - - - - Returns an observable sequence that contains only distinct elements according to the keySelector and the comparer. - - The type of the elements in the source sequence. - The type of the discriminator key computed for each element in the source sequence. - An observable sequence to retain distinct elements for. - A function to compute the comparison key for each element. - Equality comparer for source elements. - An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence. - or or is null. - Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. - - - - Groups the elements of an observable sequence according to a specified key selector function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function and comparer. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - An equality comparer to compare keys with. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or is null. - - - - Groups the elements of an observable sequence and selects the resulting elements by using a specified function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - An equality comparer to compare keys with. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or or is null. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - The initial number of elements that the underlying dictionary can contain. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - The initial number of elements that the underlying dictionary can contain. - An equality comparer to compare keys with. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity and selects the resulting elements by using a specified function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - The initial number of elements that the underlying dictionary can contain. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer and selects the resulting elements by using a specified function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - The initial number of elements that the underlying dictionary can contain. - An equality comparer to compare keys with. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or or is null. - is less than 0. - - - - Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A function to signal the expiration of a group. - An equality comparer to compare keys with. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered. - - or or or or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function and selects the resulting elements by using a specified function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A function to signal the expiration of a group. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function and comparer. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to signal the expiration of a group. - An equality comparer to compare keys with. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to signal the expiration of a group. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or is null. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer and selects the resulting elements by using a specified function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A function to signal the expiration of a group. - The initial number of elements that the underlying dictionary can contain. - An equality comparer to compare keys with. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered. - - or or or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and selects the resulting elements by using a specified function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A function to signal the expiration of a group. - The initial number of elements that the underlying dictionary can contain. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to signal the expiration of a group. - The initial number of elements that the underlying dictionary can contain. - An equality comparer to compare keys with. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to signal the expiration of a group. - The initial number of elements that the underlying dictionary can contain. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or is null. - is less than 0. - - - - Correlates the elements of two sequences based on overlapping durations, and groups the results. - - The type of the elements in the left source sequence. - The type of the elements in the right source sequence. - The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence. - The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence. - The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration. - The left observable sequence to join elements for. - The right observable sequence to join elements for. - A function to select the duration of each element of the left observable sequence, used to determine overlap. - A function to select the duration of each element of the right observable sequence, used to determine overlap. - A function invoked to compute a result element for any element of the left sequence with overlapping elements from the right observable sequence. - An observable sequence that contains result elements computed from source elements that have an overlapping duration. - or or or or is null. - - - - Correlates the elements of two sequences based on overlapping durations. - - The type of the elements in the left source sequence. - The type of the elements in the right source sequence. - The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence. - The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence. - The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration. - The left observable sequence to join elements for. - The right observable sequence to join elements for. - A function to select the duration of each element of the left observable sequence, used to determine overlap. - A function to select the duration of each element of the right observable sequence, used to determine overlap. - A function invoked to compute a result element for any two overlapping elements of the left and right observable sequences. - An observable sequence that contains result elements computed from source elements that have an overlapping duration. - or or or or is null. - - - - Filters the elements of an observable sequence based on the specified type. - - The type to filter the elements in the source sequence on. - The observable sequence that contains the elements to be filtered. - An observable sequence that contains elements from the input sequence of type TResult. - is null. - - - - Projects each element of an observable sequence into a new form. - - The type of the elements in the source sequence. - The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence. - A sequence of elements to invoke a transform function on. - A transform function to apply to each source element. - An observable sequence whose elements are the result of invoking the transform function on each element of source. - or is null. - - - - Projects each element of an observable sequence into a new form by incorporating the element's index. - - The type of the elements in the source sequence. - The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence. - A sequence of elements to invoke a transform function on. - A transform function to apply to each source element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of invoking the transform function on each element of source. - or is null. - - - - Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the other sequence and the elements in the result sequence. - An observable sequence of elements to project. - An observable sequence to project each element from the source sequence onto. - An observable sequence whose elements are the result of projecting each source element onto the other sequence and merging all the resulting sequences together. - or is null. - - - - Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner sequences and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element. - An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. - or is null. - - - - Projects each element of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner sequences and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. - or is null. - - - - Projects each element of an observable sequence to a task and merges all of the task results into one observable sequence. - - The type of the elements in the source sequence. - The type of the result produced by the projected tasks and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element. - An observable sequence whose elements are the result of the tasks executed for each element of the input sequence. - This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - or is null. - - - - Projects each element of an observable sequence to a task by incorporating the element's index and merges all of the task results into one observable sequence. - - The type of the elements in the source sequence. - The type of the result produced by the projected tasks and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of the tasks executed for each element of the input sequence. - This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - or is null. - - - - Projects each element of an observable sequence to a task with cancellation support and merges all of the task results into one observable sequence. - - The type of the elements in the source sequence. - The type of the result produced by the projected tasks and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element. - An observable sequence whose elements are the result of the tasks executed for each element of the input sequence. - This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - or is null. - - - - Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support and merges all of the task results into one observable sequence. - - The type of the elements in the source sequence. - The type of the result produced by the projected tasks and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of the tasks executed for each element of the input sequence. - This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - or is null. - - - - Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected intermediate sequences. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements. - An observable sequence of elements to project. - A transform function to apply to each element. - A transform function to apply to each element of the intermediate sequence. - An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. - or or is null. - - - - Projects each element of an observable sequence to an observable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected intermediate sequences. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element. - An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. - or or is null. - - - - Projects each element of an observable sequence to a task, invokes the result selector for the source element and the task result, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the results produced by the projected intermediate tasks. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results. - An observable sequence of elements to project. - A transform function to apply to each element. - A transform function to apply to each element of the intermediate sequence. - An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element. - or or is null. - This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - - - - Projects each element of an observable sequence to a task by incorporating the element's index, invokes the result selector for the source element and the task result, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the results produced by the projected intermediate tasks. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element. - or or is null. - This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - - - - Projects each element of an observable sequence to a task with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the results produced by the projected intermediate tasks. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results. - An observable sequence of elements to project. - A transform function to apply to each element. - A transform function to apply to each element of the intermediate sequence. - An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element. - or or is null. - This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - - - - Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the results produced by the projected intermediate tasks. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element. - or or is null. - This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - - - - Projects each notification of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner sequences and the elements in the merged result sequence. - An observable sequence of notifications to project. - A transform function to apply to each element. - A transform function to apply when an error occurs in the source sequence. - A transform function to apply when the end of the source sequence is reached. - An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence. - or or or is null. - - - - Projects each notification of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner sequences and the elements in the merged result sequence. - An observable sequence of notifications to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply when an error occurs in the source sequence. - A transform function to apply when the end of the source sequence is reached. - An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence. - or or or is null. - - - - Projects each element of an observable sequence to an enumerable sequence and concatenates the resulting enumerable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element. - An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. - or is null. - The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion. - - - - Projects each element of an observable sequence to an enumerable sequence by incorporating the element's index and concatenates the resulting enumerable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. - or is null. - The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion. - - - - Projects each element of an observable sequence to an enumerable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected intermediate enumerable sequences. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements. - An observable sequence of elements to project. - A transform function to apply to each element. - A transform function to apply to each element of the intermediate sequence. - An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. - or or is null. - The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion. - - - - Projects each element of an observable sequence to an enumerable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected intermediate enumerable sequences. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element. - An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. - or or is null. - The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion. - - - - Bypasses a specified number of elements in an observable sequence and then returns the remaining elements. - - The type of the elements in the source sequence. - The sequence to take elements from. - The number of elements to skip before returning the remaining elements. - An observable sequence that contains the elements that occur after the specified index in the input sequence. - is null. - is less than zero. - - - - Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements. - - The type of the elements in the source sequence. - An observable sequence to return elements from. - A function to test each element for a condition. - An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate. - or is null. - - - - Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements. - The element's index is used in the logic of the predicate function. - - The type of the elements in the source sequence. - An observable sequence to return elements from. - A function to test each element for a condition; the second parameter of the function represents the index of the source element. - An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate. - or is null. - - - - Returns a specified number of contiguous elements from the start of an observable sequence. - - The type of the elements in the source sequence. - The sequence to take elements from. - The number of elements to return. - An observable sequence that contains the specified number of elements from the start of the input sequence. - is null. - is less than zero. - - - - Returns a specified number of contiguous elements from the start of an observable sequence, using the specified scheduler for the edge case of Take(0). - - The type of the elements in the source sequence. - The sequence to take elements from. - The number of elements to return. - Scheduler used to produce an OnCompleted message in case count is set to 0. - An observable sequence that contains the specified number of elements from the start of the input sequence. - or is null. - is less than zero. - - - - Returns elements from an observable sequence as long as a specified condition is true. - - The type of the elements in the source sequence. - A sequence to return elements from. - A function to test each element for a condition. - An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes. - or is null. - - - - Returns elements from an observable sequence as long as a specified condition is true. - The element's index is used in the logic of the predicate function. - - The type of the elements in the source sequence. - A sequence to return elements from. - A function to test each element for a condition; the second parameter of the function represents the index of the source element. - An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes. - or is null. - - - - Filters the elements of an observable sequence based on a predicate. - - The type of the elements in the source sequence. - An observable sequence whose elements to filter. - A function to test each source element for a condition. - An observable sequence that contains elements from the input sequence that satisfy the condition. - or is null. - - - - Filters the elements of an observable sequence based on a predicate by incorporating the element's index. - - The type of the elements in the source sequence. - An observable sequence whose elements to filter. - A function to test each source element for a conditio; the second parameter of the function represents the index of the source element. - An observable sequence that contains elements from the input sequence that satisfy the condition. - or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - An observable sequence of buffers. - is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information, using the specified scheduler to run timers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - Scheduler to run buffering timers on. - An observable sequence of buffers. - or is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into zero or more buffers which are produced based on timing information. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - Interval between creation of consecutive buffers. - An observable sequence of buffers. - is null. - or is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration - length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the - current buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler, - where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - - Projects each element of an observable sequence into zero or more buffers which are produced based on timing information, using the specified scheduler to run timers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - Interval between creation of consecutive buffers. - Scheduler to run buffering timers on. - An observable sequence of buffers. - or is null. - or is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration - length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the - current buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler, - where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - - Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed. - A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Maximum time length of a window. - Maximum element count of a window. - An observable sequence of buffers. - is null. - is less than TimeSpan.Zero. -or- is less than or equal to zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers. - A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Maximum time length of a buffer. - Maximum element count of a buffer. - Scheduler to run buffering timers on. - An observable sequence of buffers. - or is null. - is less than TimeSpan.Zero. -or- is less than or equal to zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Time shifts the observable sequence by the specified relative time duration. - The relative time intervals between the values are preserved. - - The type of the elements in the source sequence. - Source sequence to delay values for. - Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible. - Time-shifted sequence. - is null. - is less than TimeSpan.Zero. - - - This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors. - - - Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription. - - - - - - Time shifts the observable sequence by the specified relative time duration, using the specified scheduler to run timers. - The relative time intervals between the values are preserved. - - The type of the elements in the source sequence. - Source sequence to delay values for. - Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible. - Scheduler to run the delay timers on. - Time-shifted sequence. - or is null. - is less than TimeSpan.Zero. - - - This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors. - - - Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription. - - - - - - Time shifts the observable sequence to start propagating notifications at the specified absolute time. - The relative time intervals between the values are preserved. - - The type of the elements in the source sequence. - Source sequence to delay values for. - Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible. - Time-shifted sequence. - is null. - - - This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors. - - - Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription. - - - - - - Time shifts the observable sequence to start propagating notifications at the specified absolute time, using the specified scheduler to run timers. - The relative time intervals between the values are preserved. - - The type of the elements in the source sequence. - Source sequence to delay values for. - Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible. - Scheduler to run the delay timers on. - Time-shifted sequence. - or is null. - - - This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors. - - - Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription. - - - - - - Time shifts the observable sequence based on a delay selector function for each element. - - The type of the elements in the source sequence. - The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence. - Source sequence to delay values for. - Selector function to retrieve a sequence indicating the delay for each given element. - Time-shifted sequence. - or is null. - - - - Time shifts the observable sequence based on a subscription delay and a delay selector function for each element. - - The type of the elements in the source sequence. - The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence. - Source sequence to delay values for. - Sequence indicating the delay for the subscription to the source. - Selector function to retrieve a sequence indicating the delay for each given element. - Time-shifted sequence. - or or is null. - - - - Time shifts the observable sequence by delaying the subscription with the specified relative time duration. - - The type of the elements in the source sequence. - Source sequence to delay subscription for. - Relative time shift of the subscription. - Time-shifted sequence. - is null. - is less than TimeSpan.Zero. - - - This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing. - - - The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected. - - - - - - Time shifts the observable sequence by delaying the subscription with the specified relative time duration, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to delay subscription for. - Relative time shift of the subscription. - Scheduler to run the subscription delay timer on. - Time-shifted sequence. - or is null. - is less than TimeSpan.Zero. - - - This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing. - - - The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected. - - - - - - Time shifts the observable sequence by delaying the subscription to the specified absolute time. - - The type of the elements in the source sequence. - Source sequence to delay subscription for. - Absolute time to perform the subscription at. - Time-shifted sequence. - is null. - - - This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing. - - - The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected. - - - - - - Time shifts the observable sequence by delaying the subscription to the specified absolute time, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to delay subscription for. - Absolute time to perform the subscription at. - Scheduler to run the subscription delay timer on. - Time-shifted sequence. - or is null. - - - This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing. - - - The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected. - - - - - - Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Time selector function to control the speed of values being produced each iteration. - The generated sequence. - or or or is null. - - - - Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Time selector function to control the speed of values being produced each iteration. - Scheduler on which to run the generator loop. - The generated sequence. - or or or or is null. - - - - Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Time selector function to control the speed of values being produced each iteration. - The generated sequence. - or or or is null. - - - - Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Time selector function to control the speed of values being produced each iteration. - Scheduler on which to run the generator loop. - The generated sequence. - or or or or is null. - - - - Returns an observable sequence that produces a value after each period. - - Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - An observable sequence that produces a value after each period. - is less than TimeSpan.Zero. - - Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification. - If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the - current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the - - operator instead. - - - - - Returns an observable sequence that produces a value after each period, using the specified scheduler to run timers and to send out observer messages. - - Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - Scheduler to run the timer on. - An observable sequence that produces a value after each period. - is less than TimeSpan.Zero. - is null. - - Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification. - If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the - current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the - - operator instead. - - - - - Samples the observable sequence at each interval. - Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence. - - The type of the elements in the source sequence. - Source sequence to sample. - Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream. - Sampled observable sequence. - is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect - of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Samples the observable sequence at each interval, using the specified scheduler to run sampling timers. - Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence. - - The type of the elements in the source sequence. - Source sequence to sample. - Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream. - Scheduler to run the sampling timer on. - Sampled observable sequence. - or is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect - of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Samples the source observable sequence using a samper observable sequence producing sampling ticks. - Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence. - - The type of the elements in the source sequence. - The type of the elements in the sampling sequence. - Source sequence to sample. - Sampling tick sequence. - Sampled observable sequence. - or is null. - - - - Skips elements for the specified duration from the start of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Duration for skipping elements from the start of the sequence. - An observable sequence with the elements skipped during the specified duration from the start of the source sequence. - is null. - is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence. - This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded - may not execute immediately, despite the TimeSpan.Zero due time. - - - Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the . - - - - - - Skips elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Duration for skipping elements from the start of the sequence. - Scheduler to run the timer on. - An observable sequence with the elements skipped during the specified duration from the start of the source sequence. - or is null. - is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence. - This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded - may not execute immediately, despite the TimeSpan.Zero due time. - - - Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the . - - - - - - Skips elements for the specified duration from the end of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Duration for skipping elements from the end of the sequence. - An observable sequence with the elements skipped during the specified duration from the end of the source sequence. - is null. - is less than TimeSpan.Zero. - - This operator accumulates a queue with a length enough to store elements received during the initial window. - As more elements are received, elements older than the specified are taken from the queue and produced on the - result sequence. This causes elements to be delayed with . - - - - - Skips elements for the specified duration from the end of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Duration for skipping elements from the end of the sequence. - Scheduler to run the timer on. - An observable sequence with the elements skipped during the specified duration from the end of the source sequence. - or is null. - is less than TimeSpan.Zero. - - This operator accumulates a queue with a length enough to store elements received during the initial window. - As more elements are received, elements older than the specified are taken from the queue and produced on the - result sequence. This causes elements to be delayed with . - - - - - Skips elements from the observable source sequence until the specified start time. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped. - An observable sequence with the elements skipped until the specified start time. - is null. - - Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the . - - - - - Skips elements from the observable source sequence until the specified start time, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped. - Scheduler to run the timer on. - An observable sequence with the elements skipped until the specified start time. - or is null. - - Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the . - - - - - Takes elements for the specified duration from the start of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the start of the sequence. - An observable sequence with the elements taken during the specified duration from the start of the source sequence. - is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect - of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute - immediately, despite the TimeSpan.Zero due time. - - - - - Takes elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the start of the sequence. - Scheduler to run the timer on. - An observable sequence with the elements taken during the specified duration from the start of the source sequence. - or is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect - of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute - immediately, despite the TimeSpan.Zero due time. - - - - - Returns elements within the specified duration from the end of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - An observable sequence with the elements taken during the specified duration from the end of the source sequence. - is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements - to be delayed with . - - - - - Returns elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - Scheduler to run the timer on. - An observable sequence with the elements taken during the specified duration from the end of the source sequence. - or is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements - to be delayed with . - - - - - Returns elements within the specified duration from the end of the observable source sequence, using the specified schedulers to run timers and to drain the collected elements. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - Scheduler to run the timer on. - Scheduler to drain the collected elements. - An observable sequence with the elements taken during the specified duration from the end of the source sequence. - or or is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements - to be delayed with . - - - - - Returns a list with the elements within the specified duration from the end of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence. - is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence. - - - - - Returns a list with the elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - Scheduler to run the timer on. - An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence. - or is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence. - - - - - Takes elements for the specified duration until the specified end time. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately. - An observable sequence with the elements taken until the specified end time. - is null. - - - - Takes elements for the specified duration until the specified end time, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately. - Scheduler to run the timer on. - An observable sequence with the elements taken until the specified end time. - or is null. - - - - Ignores elements from an observable sequence which are followed by another element within a specified relative time duration. - - The type of the elements in the source sequence. - Source sequence to throttle. - Throttling duration for each element. - The throttled sequence. - is null. - is less than TimeSpan.Zero. - - - This operator throttles the source sequence by holding on to each element for the duration specified in . If another - element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole - process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't - produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the - Observable.Sample set of operators. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled - that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the - asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero - due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action. - - - - - - Ignores elements from an observable sequence which are followed by another element within a specified relative time duration, using the specified scheduler to run throttling timers. - - The type of the elements in the source sequence. - Source sequence to throttle. - Throttling duration for each element. - Scheduler to run the throttle timers on. - The throttled sequence. - or is null. - is less than TimeSpan.Zero. - - - This operator throttles the source sequence by holding on to each element for the duration specified in . If another - element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole - process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't - produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the - Observable.Sample set of operators. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled - that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the - asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero - due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action. - - - - - - Ignores elements from an observable sequence which are followed by another value within a computed throttle duration. - - The type of the elements in the source sequence. - The type of the elements in the throttle sequences selected for each element in the source sequence. - Source sequence to throttle. - Selector function to retrieve a sequence indicating the throttle duration for each given element. - The throttled sequence. - or is null. - - This operator throttles the source sequence by holding on to each element for the duration denoted by . - If another element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this - whole process. For streams where the duration computed by applying the to each element overlaps with - the occurrence of the successor element, the resulting stream won't produce any elements. In order to reduce the volume of a stream whilst - guaranteeing the periodic production of elements, consider using the Observable.Sample set of operators. - - - - - Records the time interval between consecutive elements in an observable sequence. - - The type of the elements in the source sequence. - Source sequence to record time intervals for. - An observable sequence with time interval information on elements. - is null. - - - - Records the time interval between consecutive elements in an observable sequence, using the specified scheduler to compute time intervals. - - The type of the elements in the source sequence. - Source sequence to record time intervals for. - Scheduler used to compute time intervals. - An observable sequence with time interval information on elements. - or is null. - - - - Applies a timeout policy for each element in the observable sequence. - If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - Source sequence to perform a timeout for. - Maximum duration between values before a timeout occurs. - The source sequence with a TimeoutException in case of a timeout. - is null. - is less than TimeSpan.Zero. - (Asynchronous) If no element is produced within from the previous element. - - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due - immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the - scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may - arrive before the scheduler gets a chance to run the timeout action. - - - - - - Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers. - If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - Source sequence to perform a timeout for. - Maximum duration between values before a timeout occurs. - Scheduler to run the timeout timers on. - The source sequence with a TimeoutException in case of a timeout. - or is null. - is less than TimeSpan.Zero. - (Asynchronous) If no element is produced within from the previous element. - - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due - immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the - scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may - arrive before the scheduler gets a chance to run the timeout action. - - - - - - Applies a timeout policy for each element in the observable sequence. - If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - Source sequence to perform a timeout for. - Maximum duration between values before a timeout occurs. - Sequence to return in case of a timeout. - The source sequence switching to the other sequence in case of a timeout. - or is null. - is less than TimeSpan.Zero. - - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due - immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the - scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may - arrive before the scheduler gets a chance to run the timeout action. - - - - - - Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers. - If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - Source sequence to perform a timeout for. - Maximum duration between values before a timeout occurs. - Sequence to return in case of a timeout. - Scheduler to run the timeout timers on. - The source sequence switching to the other sequence in case of a timeout. - or or is null. - is less than TimeSpan.Zero. - - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due - immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the - scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may - arrive before the scheduler gets a chance to run the timeout action. - - - - - - Applies a timeout policy to the observable sequence based on an absolute time. - If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - Source sequence to perform a timeout for. - Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately. - The source sequence with a TimeoutException in case of a timeout. - is null. - (Asynchronous) If the sequence hasn't terminated before . - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - - - Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers. - If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - Source sequence to perform a timeout for. - Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately. - Scheduler to run the timeout timers on. - The source sequence with a TimeoutException in case of a timeout. - or is null. - (Asynchronous) If the sequence hasn't terminated before . - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - - - Applies a timeout policy to the observable sequence based on an absolute time. - If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - Source sequence to perform a timeout for. - Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately. - Sequence to return in case of a timeout. - The source sequence switching to the other sequence in case of a timeout. - or is null. - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - - - Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers. - If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - Source sequence to perform a timeout for. - Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately. - Sequence to return in case of a timeout. - Scheduler to run the timeout timers on. - The source sequence switching to the other sequence in case of a timeout. - or or is null. - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - - - Applies a timeout policy to the observable sequence based on a timeout duration computed for each element. - If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence. - Source sequence to perform a timeout for. - Selector to retrieve an observable sequence that represents the timeout between the current element and the next element. - The source sequence with a TimeoutException in case of a timeout. - or is null. - - - - Applies a timeout policy to the observable sequence based on a timeout duration computed for each element. - If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence. - Source sequence to perform a timeout for. - Selector to retrieve an observable sequence that represents the timeout between the current element and the next element. - Sequence to return in case of a timeout. - The source sequence switching to the other sequence in case of a timeout. - or or is null. - - - - Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element. - If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence. - Source sequence to perform a timeout for. - Observable sequence that represents the timeout for the first element. - Selector to retrieve an observable sequence that represents the timeout between the current element and the next element. - The source sequence with a TimeoutException in case of a timeout. - or or is null. - - - - Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element. - If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence. - Source sequence to perform a timeout for. - Observable sequence that represents the timeout for the first element. - Selector to retrieve an observable sequence that represents the timeout between the current element and the next element. - Sequence to return in case of a timeout. - The source sequence switching to the other sequence in case of a timeout. - or or or is null. - - - - Returns an observable sequence that produces a single value after the specified relative due time has elapsed. - - Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible. - An observable sequence that produces a value after the due time has elapsed. - - - - Returns an observable sequence that produces a single value at the specified absolute due time. - - Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible. - An observable sequence that produces a value at due time. - - - - Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed. - - Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible. - Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - An observable sequence that produces a value after due time has elapsed and then after each period. - is less than TimeSpan.Zero. - - - - Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time. - - Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible. - Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - An observable sequence that produces a value at due time and then after each period. - is less than TimeSpan.Zero. - - - - Returns an observable sequence that produces a single value after the specified relative due time has elapsed, using the specified scheduler to run the timer. - - Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible. - Scheduler to run the timer on. - An observable sequence that produces a value after the due time has elapsed. - is null. - - - - Returns an observable sequence that produces a single value at the specified absolute due time, using the specified scheduler to run the timer. - - Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible. - Scheduler to run the timer on. - An observable sequence that produces a value at due time. - is null. - - - - Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed, using the specified scheduler to run timers. - - Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible. - Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - Scheduler to run timers on. - An observable sequence that produces a value after due time has elapsed and then each period. - is less than TimeSpan.Zero. - is null. - - - - Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time, using the specified scheduler to run timers. - - Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible. - Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - Scheduler to run timers on. - An observable sequence that produces a value at due time and then after each period. - is less than TimeSpan.Zero. - is null. - - - - Timestamps each element in an observable sequence using the local system clock. - - The type of the elements in the source sequence. - Source sequence to timestamp elements for. - An observable sequence with timestamp information on elements. - is null. - - - - Timestamp each element in an observable sequence using the clock of the specified scheduler. - - The type of the elements in the source sequence. - Source sequence to timestamp elements for. - Scheduler used to compute timestamps. - An observable sequence with timestamp information on elements. - or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - The sequence of windows. - is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information, using the specified scheduler to run timers. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - Scheduler to run windowing timers on. - An observable sequence of windows. - or is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into zero or more windows which are produced based on timing information. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - Interval between creation of consecutive windows. - An observable sequence of windows. - is null. - or is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration - length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the - current window may not execute immediately, despite the TimeSpan.Zero due time. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler, - where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - - Projects each element of an observable sequence into zero or more windows which are produced based on timing information, using the specified scheduler to run timers. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - Interval between creation of consecutive windows. - Scheduler to run windowing timers on. - An observable sequence of windows. - or is null. - or is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration - length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the - current window may not execute immediately, despite the TimeSpan.Zero due time. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler, - where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - - Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed. - A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Maximum time length of a window. - Maximum element count of a window. - An observable sequence of windows. - is null. - is less than TimeSpan.Zero. -or- is less than or equal to zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers. - A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Maximum time length of a window. - Maximum element count of a window. - Scheduler to run windowing timers on. - An observable sequence of windows. - or is null. - is less than TimeSpan.Zero. -or- is less than or equal to zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Represents the result of an asynchronous operation. - The last value before the OnCompleted notification, or the error received through OnError, is sent to all subscribed observers. - - The type of the elements processed by the subject. - - - - Creates a subject that can only receive one value and that value is cached for all future observations. - - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Notifies all subscribed observers about the end of the sequence, also causing the last received value to be sent out (if any). - - - - - Notifies all subscribed observers about the exception. - - The exception to send to all observers. - is null. - - - - Sends a value to the subject. The last value received before successful termination will be sent to all subscribed and future observers. - - The value to store in the subject. - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - Unsubscribe all observers and release resources. - - - - - Gets an awaitable object for the current AsyncSubject. - - Object that can be awaited. - - - - Specifies a callback action that will be invoked when the subject completes. - - Callback action that will be invoked when the subject completes. - is null. - - - - Gets whether the AsyncSubject has completed. - - - - - Gets the last element of the subject, potentially blocking until the subject completes successfully or exceptionally. - - The last element of the subject. Throws an InvalidOperationException if no element was received. - The source sequence is empty. - - - - Represents a value that changes over time. - Observers can subscribe to the subject to receive the last (or initial) value and all subsequent notifications. - - The type of the elements processed by the subject. - - - - Initializes a new instance of the class which creates a subject that caches its last value and starts with the specified value. - - Initial value sent to observers when no other value has been received by the subject yet. - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Gets the current value or throws an exception. - - The initial value passed to the constructor until is called; after which, the last value passed to . - - is frozen after is called. - After is called, always throws the specified exception. - An exception is always thrown after is called. - - Reading is a thread-safe operation, though there's a potential race condition when or are being invoked concurrently. - In some cases, it may be necessary for a caller to use external synchronization to avoid race conditions. - - - Dispose was called. - - - - Tries to get the current value or throws an exception. - - The initial value passed to the constructor until is called; after which, the last value passed to . - true if a value is available; false if the subject was disposed. - - The value returned from is frozen after is called. - After is called, always throws the specified exception. - - Calling is a thread-safe operation, though there's a potential race condition when or are being invoked concurrently. - In some cases, it may be necessary for a caller to use external synchronization to avoid race conditions. - - - - - - Notifies all subscribed observers about the end of the sequence. - - - - - Notifies all subscribed observers about the exception. - - The exception to send to all observers. - is null. - - - - Notifies all subscribed observers about the arrival of the specified element in the sequence. - - The value to send to all observers. - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - Unsubscribe all observers and release resources. - - - - - Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the resulting sequence, after transformation through the subject. - - - - Creates an observable that can be connected and disconnected from its source. - - Underlying observable source sequence that can be connected and disconnected from the wrapper. - Subject exposed by the connectable observable, receiving data from the underlying source sequence upon connection. - - - - Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established. - - Disposable object used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence. - - - - Subscribes an observer to the observable sequence. No values from the underlying observable source will be received unless a connection was established through the Connect method. - - Observer that will receive values from the underlying observable source when the current ConnectableObservable instance is connected through a call to Connect. - Disposable used to unsubscribe from the observable sequence. - - - - Represents an object that is both an observable sequence as well as an observer. - Each notification is broadcasted to all subscribed and future observers, subject to buffer trimming policies. - - The type of the elements processed by the subject. - - - - Underlying optimized implementation of the replay subject. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified scheduler. - - Scheduler the observers are invoked on. - is null. - - - - Initializes a new instance of the class with the specified buffer size. - - Maximum element count of the replay buffer. - is less than zero. - - - - Initializes a new instance of the class with the specified buffer size and scheduler. - - Maximum element count of the replay buffer. - Scheduler the observers are invoked on. - is null. - is less than zero. - - - - Initializes a new instance of the class with the specified window. - - Maximum time length of the replay buffer. - is less than TimeSpan.Zero. - - - - Initializes a new instance of the class with the specified window and scheduler. - - Maximum time length of the replay buffer. - Scheduler the observers are invoked on. - is null. - is less than TimeSpan.Zero. - - - - Initializes a new instance of the class with the specified buffer size and window. - - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - is less than zero. -or- is less than TimeSpan.Zero. - - - - Initializes a new instance of the class with the specified buffer size, window and scheduler. - - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - Scheduler the observers are invoked on. - is less than zero. -or- is less than TimeSpan.Zero. - is null. - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Notifies all subscribed and future observers about the arrival of the specified element in the sequence. - - The value to send to all observers. - - - - Notifies all subscribed and future observers about the specified exception. - - The exception to send to all observers. - is null. - - - - Notifies all subscribed and future observers about the end of the sequence. - - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - Releases all resources used by the current instance of the class and unsubscribe all observers. - - - - - Original implementation of the ReplaySubject with time based operations (Scheduling, Stopwatch, buffer-by-time). - - - - - Specialized scheduled observer similar to a scheduled observer for the immediate scheduler. - - Type of the elements processed by the observer. - - - - Gate to control ownership transfer and protect data structures. - - - - - Observer to forward notifications to. - - - - - Queue to enqueue OnNext notifications into. - - - - - Standby queue to swap out for _queue when transferring ownership. This allows to reuse - queues in case of busy subjects where the initial replay doesn't suffice to catch up. - - - - - Exception passed to an OnError notification, if any. - - - - - Indicates whether an OnCompleted notification was received. - - - - - Indicates whether the observer is busy, i.e. some thread is actively draining the - notifications that were queued up. - - - - - Indicates whether a failure occurred when the owner was draining the queue. This will - prevent future work to be processed. - - - - - Creates a new scheduled observer that proxies to the specified observer. - - Observer to forward notifications to. - - - - Disposes the observer. - - - - - Notifies the observer of pending work. This will either cause the current owner to - process the newly enqueued notifications, or it will cause the calling thread to - become the owner and start processing the notification queue. - - - - - Notifies the observer of pending work. This will either cause the current owner to - process the newly enqueued notifications, or it will cause the calling thread to - become the owner and start processing the notification queue. - - The number of enqueued notifications to process (ignored). - - - - Enqueues an OnCompleted notification. - - - - - Enqueues an OnError notification. - - Error of the notification. - - - - Enqueues an OnNext notification. - - Value of the notification. - - - - Terminates the observer upon receiving terminal notifications, thus preventing - future notifications to go out. - - Observer to send terminal notifications to. - - - - Represents an object that is both an observable sequence as well as an observer. - Each notification is broadcasted to all subscribed observers. - - The type of the elements processed by the subject. - - - - Creates a subject. - - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Notifies all subscribed observers about the end of the sequence. - - - - - Notifies all subscribed observers about the specified exception. - - The exception to send to all currently subscribed observers. - is null. - - - - Notifies all subscribed observers about the arrival of the specified element in the sequence. - - The value to send to all currently subscribed observers. - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - Releases all resources used by the current instance of the class and unsubscribes all observers. - - - - - Provides a set of static methods for creating subjects. - - - - - Creates a subject from the specified observer and observable. - - The type of the elements received by the observer. - The type of the elements produced by the observable sequence. - The observer used to send messages to the subject. - The observable used to subscribe to messages sent from the subject. - Subject implemented using the given observer and observable. - or is null. - - - - Creates a subject from the specified observer and observable. - - The type of the elements received by the observer and produced by the observable sequence. - The observer used to send messages to the subject. - The observable used to subscribe to messages sent from the subject. - Subject implemented using the given observer and observable. - or is null. - - - - Synchronizes the messages sent to the subject. - - The type of the elements received by the subject. - The type of the elements produced by the subject. - The subject to synchronize. - Subject whose messages are synchronized. - is null. - - - - Synchronizes the messages sent to the subject. - - The type of the elements received and produced by the subject. - The subject to synchronize. - Subject whose messages are synchronized. - is null. - - - - Synchronizes the messages sent to the subject and notifies observers on the specified scheduler. - - The type of the elements received by the subject. - The type of the elements produced by the subject. - The subject to synchronize. - Scheduler to notify observers on. - Subject whose messages are synchronized and whose observers are notified on the given scheduler. - or is null. - - - - Synchronizes the messages sent to the subject and notifies observers on the specified scheduler. - - The type of the elements received and produced by the subject. - The subject to synchronize. - Scheduler to notify observers on. - Subject whose messages are synchronized and whose observers are notified on the given scheduler. - or is null. - - - - Base calss for objects that are both an observable sequence as well as an observer. - - The type of the elements processed by the subject. - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Releases all resources used by the current instance of the subject and unsubscribes all observers. - - - - - Notifies all subscribed observers about the end of the sequence. - - - - - Notifies all subscribed observers about the specified exception. - - The exception to send to all currently subscribed observers. - is null. - - - - Notifies all subscribed observers about the arrival of the specified element in the sequence. - - The value to send to all currently subscribed observers. - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - The System.Reactive.Threading.Tasks namespace contains helpers for the conversion between tasks and observable sequences. - - - - - Provides a set of static methods for converting tasks to observable sequences. - - - - - Returns an observable sequence that signals when the task completes. - - Task to convert to an observable sequence. - An observable sequence that produces a unit value when the task completes, or propagates the exception produced by the task. - is null. - If the specified task object supports cancellation, consider using instead. - - - - Returns an observable sequence that signals when the task completes. - - Task to convert to an observable sequence. - Scheduler on which to notify observers about completion, cancellation or failure. - An observable sequence that produces a unit value when the task completes, or propagates the exception produced by the task. - is null or is null. - If the specified task object supports cancellation, consider using instead. - - - - Returns an observable sequence that propagates the result of the task. - - The type of the result produced by the task. - Task to convert to an observable sequence. - An observable sequence that produces the task's result, or propagates the exception produced by the task. - is null. - If the specified task object supports cancellation, consider using instead. - - - - Returns an observable sequence that propagates the result of the task. - - The type of the result produced by the task. - Task to convert to an observable sequence. - Scheduler on which to notify observers about completion, cancellation or failure. - An observable sequence that produces the task's result, or propagates the exception produced by the task. - is null or is null. - If the specified task object supports cancellation, consider using instead. - - - - Returns a task that will receive the last value or the exception produced by the observable sequence. - - The type of the elements in the source sequence. - Observable sequence to convert to a task. - A task that will receive the last element or the exception produced by the observable sequence. - is null. - - - - Returns a task that will receive the last value or the exception produced by the observable sequence. - - The type of the elements in the source sequence. - Observable sequence to convert to a task. - The state to use as the underlying task's AsyncState. - A task that will receive the last element or the exception produced by the observable sequence. - is null. - - - - Returns a task that will receive the last value or the exception produced by the observable sequence. - - The type of the elements in the source sequence. - Observable sequence to convert to a task. - Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence. - A task that will receive the last element or the exception produced by the observable sequence. - is null. - - - - Returns a task that will receive the last value or the exception produced by the observable sequence. - - The type of the elements in the source sequence. - Observable sequence to convert to a task. - Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence. - The state to use as the underlying task's AsyncState. - A task that will receive the last element or the exception produced by the observable sequence. - is null. - - - diff --git a/References/DESKTOPCLR45/System.Reactive.Linq.dll b/References/DESKTOPCLR45/System.Reactive.Linq.dll deleted file mode 100644 index cfdb704..0000000 Binary files a/References/DESKTOPCLR45/System.Reactive.Linq.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/System.Reactive.PlatformServices.XML b/References/DESKTOPCLR45/System.Reactive.PlatformServices.XML deleted file mode 100644 index 0ced8a0..0000000 --- a/References/DESKTOPCLR45/System.Reactive.PlatformServices.XML +++ /dev/null @@ -1,378 +0,0 @@ - - - - System.Reactive.PlatformServices - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - Looks up a localized string similar to The WinRT thread pool doesn't support creating periodic timers with a period below 1 millisecond.. - - - - - Provides access to the platform enlightenments used by other Rx libraries to improve system performance and - runtime efficiency. While Rx can run without platform enlightenments loaded, it's recommended to deploy the - System.Reactive.PlatformServices assembly with your application and call during application startup to ensure enlightenments are properly loaded. - - - - - Ensures that the calling assembly has a reference to the System.Reactive.PlatformServices assembly with - platform enlightenments. If no reference is made from the user code, it's possible for the build process - to drop the deployment of System.Reactive.PlatformServices, preventing its runtime discovery. - - - true if the loaded enlightenment provider matches the provided defined in the current assembly; false - otherwise. When a custom enlightenment provider is installed by the host, false will be returned. - - - - - (Infrastructure) Provider for platform-specific framework enlightenments. - - - - - (Infastructure) Tries to gets the specified service. - - Service type. - Optional set of arguments. - Service instance or null if not found. - - - - Represents an object that schedules units of work on a designated thread. - - - - - Counter for diagnostic purposes, to name the threads. - - - - - Thread factory function. - - - - - Stopwatch for timing free of absolute time dependencies. - - - - - Thread used by the event loop to run work items on. No work should be run on any other thread. - If ExitIfEmpty is set, the thread can quit and a new thread will be created when new work is scheduled. - - - - - Gate to protect data structures, including the work queue and the ready list. - - - - - Semaphore to count requests to re-evaluate the queue, from either Schedule requests or when a timer - expires and moves on to the next item in the queue. - - - - - Queue holding work items. Protected by the gate. - - - - - Queue holding items that are ready to be run as soon as possible. Protected by the gate. - - - - - Work item that will be scheduled next. Used upon reevaluation of the queue to check whether the next - item is still the same. If not, a new timer needs to be started (see below). - - - - - Disposable that always holds the timer to dispatch the first element in the queue. - - - - - Flag indicating whether the event loop should quit. When set, the event should be signaled as well to - wake up the event loop thread, which will subsequently abandon all work. - - - - - Creates an object that schedules units of work on a designated thread. - - - - - Creates an object that schedules units of work on a designated thread, using the specified factory to control thread creation options. - - Factory function for thread creation. - is null. - - - - Indicates whether the event loop thread is allowed to quit when no work is left. If new work - is scheduled afterwards, a new event loop thread is created. This property is used by the - NewThreadScheduler which uses an event loop for its recursive invocations. - - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - The scheduler has been disposed and doesn't accept new work. - - - - Schedules a periodic piece of work on the designated thread. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than TimeSpan.Zero. - The scheduler has been disposed and doesn't accept new work. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Ends the thread associated with this scheduler. All remaining work in the scheduler queue is abandoned. - - - - - Ensures there is an event loop thread running. Should be called under the gate. - - - - - Event loop scheduled on the designated event loop thread. The loop is suspended/resumed using the event - which gets set by calls to Schedule, the next item timer, or calls to Dispose. - - - - - Represents an object that schedules each unit of work on a separate thread. - - - - - Creates an object that schedules each unit of work on a separate thread. - - - - - Gets an instance of this scheduler that uses the default Thread constructor. - - - - - Creates an object that schedules each unit of work on a separate thread. - - Factory function for thread creation. - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a long-running task by creating a new thread. Cancellation happens through polling. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a periodic piece of work by creating a new thread that goes to sleep when work has been dispatched and wakes up again at the next periodic due time. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than TimeSpan.Zero. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Represents an object that schedules units of work on the Task Parallel Library (TPL) task pool. - - Instance of this type using the default TaskScheduler to schedule work on the TPL task pool. - - - - Creates an object that schedules units of work using the provided TaskFactory. - - Task factory used to create tasks to run units of work. - is null. - - - - Gets an instance of this scheduler that uses the default TaskScheduler. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a long-running task by creating a new task using TaskCreationOptions.LongRunning. Cancellation happens through polling. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Gets a new stopwatch ob ject. - - New stopwatch object; started at the time of the request. - - - - Schedules a periodic piece of work by running a platform-specific timer to create tasks periodically. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than TimeSpan.Zero. - - - - Represents an object that schedules units of work on the CLR thread pool. - - Singleton instance of this type exposed through this static property. - - - - Gets the singleton instance of the CLR thread pool scheduler. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime, using a System.Threading.Timer object. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a long-running task by creating a new thread. Cancellation happens through polling. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Schedules a periodic piece of work, using a System.Threading.Timer object. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than zero. - - - diff --git a/References/DESKTOPCLR45/System.Reactive.PlatformServices.dll b/References/DESKTOPCLR45/System.Reactive.PlatformServices.dll deleted file mode 100644 index b4bf95d..0000000 Binary files a/References/DESKTOPCLR45/System.Reactive.PlatformServices.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/System.Reactive.Windows.Forms.XML b/References/DESKTOPCLR45/System.Reactive.Windows.Forms.XML deleted file mode 100644 index 3cd696b..0000000 --- a/References/DESKTOPCLR45/System.Reactive.Windows.Forms.XML +++ /dev/null @@ -1,90 +0,0 @@ - - - - System.Reactive.Windows.Forms - - - - - Represents an object that schedules units of work on the message loop associated with a Windows Forms control. - - - - - Constructs a ControlScheduler that schedules units of work on the message loop associated with the specified Windows Forms control. - - Windows Forms control to get the message loop from. - is null. - - This scheduler type is typically used indirectly through the and method overloads that take a Windows Forms control. - - - - - Gets the control associated with the ControlScheduler. - - - - - Schedules an action to be executed on the message loop associated with the control. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime on the message loop associated with the control, using a Windows Forms Timer object. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a periodic piece of work on the message loop associated with the control, using a Windows Forms Timer object. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than one millisecond. - - - - Provides a set of static methods for subscribing to IObservables using Windows Forms controls. - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the Windows Forms message loop associated with the specified control. - - The type of the elements in the source sequence. - Source sequence. - Windows Forms control whose associated message loop is used to to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the Windows Forms message loop associated with the specified control. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified control. - In order to invoke observer callbacks on the specified control, e.g. to render results in a control, use . - - - - - Wraps the source sequence in order to run its observer callbacks on the Windows Forms message loop associated with the specified control. - - The type of the elements in the source sequence. - Source sequence. - Windows Forms control whose associated message loop is used to to notify observers on. - The source sequence whose observations happen on the Windows Forms message loop associated with the specified control. - or is null. - - - diff --git a/References/DESKTOPCLR45/System.Reactive.Windows.Forms.dll b/References/DESKTOPCLR45/System.Reactive.Windows.Forms.dll deleted file mode 100644 index 5346310..0000000 Binary files a/References/DESKTOPCLR45/System.Reactive.Windows.Forms.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/System.Reactive.Windows.Threading.dll b/References/DESKTOPCLR45/System.Reactive.Windows.Threading.dll deleted file mode 100644 index a94143a..0000000 Binary files a/References/DESKTOPCLR45/System.Reactive.Windows.Threading.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/System.Reactive.Windows.Threading.xml b/References/DESKTOPCLR45/System.Reactive.Windows.Threading.xml deleted file mode 100644 index 681a6c6..0000000 --- a/References/DESKTOPCLR45/System.Reactive.Windows.Threading.xml +++ /dev/null @@ -1,285 +0,0 @@ - - - - System.Reactive.Windows.Threading - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - Looks up a localized string similar to The current thread has no Dispatcher associated with it.. - - - - - Looks up a localized string similar to No current Window object found to obtain a CoreDispatcher from.. - - - - - Represents an object that schedules units of work on a . - - - This scheduler type is typically used indirectly through the and methods that use the Dispatcher on the calling thread. - - - - - Gets the scheduler that schedules work on the current . - - - - - Gets the scheduler that schedules work on the for the current thread. - - - - - Constructs a DispatcherScheduler that schedules units of work on the given . - - Dispatcher to schedule work on. - is null. - - - - Constructs a DispatcherScheduler that schedules units of work on the given at the given priority. - - Dispatcher to schedule work on. - Priority at which units of work are scheduled. - is null. - - - - Gets the associated with the DispatcherScheduler. - - - - - Gets the priority at which work items will be dispatched. - - - - - Schedules an action to be executed on the dispatcher. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime on the dispatcher, using a object. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a periodic piece of work on the dispatcher, using a object. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than TimeSpan.Zero. - - - - Provides a set of extension methods for scheduling actions performed through observable sequences on UI dispatchers. - - - - - Wraps the source sequence in order to run its observer callbacks on the specified dispatcher. - - The type of the elements in the source sequence. - Source sequence. - Dispatcher whose associated message loop is used to to notify observers on. - The source sequence whose observations happen on the specified dispatcher. - or is null. - - - - Wraps the source sequence in order to run its observer callbacks on the specified dispatcher. - - The type of the elements in the source sequence. - Source sequence. - Dispatcher whose associated message loop is used to to notify observers on. - Priority to schedule work items at. - The source sequence whose observations happen on the specified dispatcher. - or is null. - - - - Wraps the source sequence in order to run its observer callbacks on the specified dispatcher scheduler. - - The type of the elements in the source sequence. - Source sequence. - Dispatcher scheduler to notify observers on. - The source sequence whose observations happen on the specified dispatcher scheduler. - or is null. - - - - Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object. - - The type of the elements in the source sequence. - Source sequence. - Object to get the dispatcher from. - The source sequence whose observations happen on the specified object's dispatcher. - or is null. - - - - Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the specified object. - - The type of the elements in the source sequence. - Source sequence. - Object to get the dispatcher from. - Priority to schedule work items at. - The source sequence whose observations happen on the specified object's dispatcher. - or is null. - - - - Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current thread. - - The type of the elements in the source sequence. - Source sequence. - The source sequence whose observations happen on the current thread's dispatcher. - is null. - - - - Wraps the source sequence in order to run its observer callbacks on the dispatcher associated with the current thread. - - The type of the elements in the source sequence. - Source sequence. - Priority to schedule work items at. - The source sequence whose observations happen on the current thread's dispatcher. - is null. - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher. - - The type of the elements in the source sequence. - Source sequence. - Dispatcher whose associated message loop is used to to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher. - In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher. - - The type of the elements in the source sequence. - Source sequence. - Dispatcher whose associated message loop is used to to perform subscription and unsubscription actions on. - Priority to schedule work items at. - The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified dispatcher. - In order to invoke observer callbacks on the specified dispatcher, e.g. to render results in a control, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified dispatcher scheduler. - - The type of the elements in the source sequence. - Source sequence. - Dispatcher scheduler to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified dispatcher scheduler. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified scheduler. - In order to invoke observer callbacks on the specified scheduler, e.g. to render results in a control, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object. - - The type of the elements in the source sequence. - Source sequence. - Object to get the dispatcher from. - The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object. - In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the specified object. - - The type of the elements in the source sequence. - Source sequence. - Object to get the dispatcher from. - Priority to schedule work items at. - The source sequence whose subscriptions and unsubscriptions happen on the specified object's dispatcher. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the specified object. - In order to invoke observer callbacks on the dispatcher associated with the specified object, e.g. to render results in a control, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current thread. - - The type of the elements in the source sequence. - Source sequence. - The source sequence whose subscriptions and unsubscriptions happen on the current thread's dispatcher. - is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current thread. - In order to invoke observer callbacks on the dispatcher associated with the current thread, e.g. to render results in a control, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the dispatcher associated with the current thread. - - The type of the elements in the source sequence. - Source sequence. - Priority to schedule work items at. - The source sequence whose observations happen on the current thread's dispatcher. - is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the dispatcher associated with the current thread. - In order to invoke observer callbacks on the dispatcher associated with the current thread, e.g. to render results in a control, use . - - - - diff --git a/References/DESKTOPCLR45/xunit.assert.dll b/References/DESKTOPCLR45/xunit.assert.dll deleted file mode 100644 index 3f155ab..0000000 Binary files a/References/DESKTOPCLR45/xunit.assert.dll and /dev/null differ diff --git a/References/DESKTOPCLR45/xunit.assert.xml b/References/DESKTOPCLR45/xunit.assert.xml deleted file mode 100644 index 342e7e7..0000000 --- a/References/DESKTOPCLR45/xunit.assert.xml +++ /dev/null @@ -1,1414 +0,0 @@ - - - - xunit.assert - - - - - Contains various static methods that are used to verify that conditions are met during the - process of running tests. - - - - - Initializes a new instance of the class. - - - - Do not call this method. - - - Do not call this method. - - - - Verifies that the condition is false. - - The condition to be tested - Thrown if the condition is not false - - - - Verifies that the condition is false. - - The condition to be tested - Thrown if the condition is not false - - - - Verifies that the condition is false. - - The condition to be tested - The message to show when the condition is not false - Thrown if the condition is not false - - - - Verifies that the condition is false. - - The condition to be tested - The message to show when the condition is not false - Thrown if the condition is not false - - - - Verifies that an expression is true. - - The condition to be inspected - Thrown when the condition is false - - - - Verifies that an expression is true. - - The condition to be inspected - Thrown when the condition is false - - - - Verifies that an expression is true. - - The condition to be inspected - The message to be shown when the condition is false - Thrown when the condition is false - - - - Verifies that an expression is true. - - The condition to be inspected - The message to be shown when the condition is false - Thrown when the condition is false - - - - Verifies that all items in the collection pass when executed against - action. - - The type of the object to be verified - The collection - The action to test each item against - Thrown when the collection contains at least one non-matching element - - - - Verifies that a collection contains exactly a given number of elements, which meet - the criteria provided by the element inspectors. - - The type of the object to be verified - The collection to be inspected - The element inspectors, which inspect each element in turn. The - total number of element inspectors must exactly match the number of elements in the collection. - - - - Verifies that a collection contains a given object. - - The type of the object to be verified - The object expected to be in the collection - The collection to be inspected - Thrown when the object is not present in the collection - - - - Verifies that a collection contains a given object, using an equality comparer. - - The type of the object to be verified - The object expected to be in the collection - The collection to be inspected - The comparer used to equate objects in the collection with the expected object - Thrown when the object is not present in the collection - - - - Verifies that a collection contains a given object. - - The type of the object to be verified - The collection to be inspected - The filter used to find the item you're ensuring the collection contains - Thrown when the object is not present in the collection - - - - Verifies that a collection does not contain a given object. - - The type of the object to be compared - The object that is expected not to be in the collection - The collection to be inspected - Thrown when the object is present inside the container - - - - Verifies that a collection does not contain a given object, using an equality comparer. - - The type of the object to be compared - The object that is expected not to be in the collection - The collection to be inspected - The comparer used to equate objects in the collection with the expected object - Thrown when the object is present inside the container - - - - Verifies that a collection does not contain a given object. - - The type of the object to be compared - The collection to be inspected - The filter used to find the item you're ensuring the collection does not contain - Thrown when the object is present inside the container - - - - Verifies that a collection is empty. - - The collection to be inspected - Thrown when the collection is null - Thrown when the collection is not empty - - - - Verifies that two sequences are equivalent, using a default comparer. - - The type of the objects to be compared - The expected value - The value to be compared against - Thrown when the objects are not equal - - - - Verifies that two sequences are equivalent, using a custom equatable comparer. - - The type of the objects to be compared - The expected value - The value to be compared against - The comparer used to compare the two objects - Thrown when the objects are not equal - - - - Verifies that a collection is not empty. - - The collection to be inspected - Thrown when a null collection is passed - Thrown when the collection is empty - - - - Verifies that two sequences are not equivalent, using a default comparer. - - The type of the objects to be compared - The expected object - The actual object - Thrown when the objects are equal - - - - Verifies that two sequences are not equivalent, using a custom equality comparer. - - The type of the objects to be compared - The expected object - The actual object - The comparer used to compare the two objects - Thrown when the objects are equal - - - - Verifies that the given collection contains only a single - element of the given type. - - The collection. - The single item in the collection. - Thrown when the collection does not contain - exactly one element. - - - - Verifies that the given collection contains only a single - element of the given value. The collection may or may not - contain other values. - - The collection. - The value to find in the collection. - The single item in the collection. - Thrown when the collection does not contain - exactly one element. - - - - Verifies that the given collection contains only a single - element of the given type. - - The collection type. - The collection. - The single item in the collection. - Thrown when the collection does not contain - exactly one element. - - - - Verifies that the given collection contains only a single - element of the given type which matches the given predicate. The - collection may or may not contain other values which do not - match the given predicate. - - The collection type. - The collection. - The item matching predicate. - The single item in the filtered collection. - Thrown when the filtered collection does - not contain exactly one element. - - - - Verifies that two objects are equal, using a default comparer. - - The type of the objects to be compared - The expected value - The value to be compared against - Thrown when the objects are not equal - - - - Verifies that two objects are equal, using a custom equatable comparer. - - The type of the objects to be compared - The expected value - The value to be compared against - The comparer used to compare the two objects - Thrown when the objects are not equal - - - - Verifies that two values are equal, within the number of decimal - places given by . - - The expected value - The value to be compared against - The number of decimal places (valid values: 0-15) - Thrown when the values are not equal - - - - Verifies that two values are equal, within the number of decimal - places given by . - - The expected value - The value to be compared against - The number of decimal places (valid values: 0-15) - Thrown when the values are not equal - - - - Verifies that two objects are strictly equal, using the type's default comparer. - - The type of the objects to be compared - The expected value - The value to be compared against - Thrown when the objects are not equal - - - - Verifies that two objects are not equal, using a default comparer. - - The type of the objects to be compared - The expected object - The actual object - Thrown when the objects are equal - - - - Verifies that two objects are not equal, using a custom equality comparer. - - The type of the objects to be compared - The expected object - The actual object - The comparer used to examine the objects - Thrown when the objects are equal - - - - Verifies that two values are not equal, within the number of decimal - places given by . - - The expected value - The value to be compared against - The number of decimal places (valid values: 0-15) - Thrown when the values are equal - - - - Verifies that two values are not equal, within the number of decimal - places given by . - - The expected value - The value to be compared against - The number of decimal places (valid values: 0-15) - Thrown when the values are equal - - - - Verifies that two objects are strictly not equal, using the type's default comparer. - - The type of the objects to be compared - The expected object - The actual object - Thrown when the objects are equal - - - - Verifies that the exact exception is thrown (and not a derived exception type). - - The type of the exception expected to be thrown - A delegate to the code to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception is thrown (and not a derived exception type). - Generally used to test property accessors. - - The type of the exception expected to be thrown - A delegate to the code to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - - - - Verifies that the exact exception is thrown (and not a derived exception type). - - The type of the exception expected to be thrown - A delegate to the task to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception or a derived exception type is thrown. - - The type of the exception expected to be thrown - A delegate to the code to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception or a derived exception type is thrown. - Generally used to test property accessors. - - The type of the exception expected to be thrown - A delegate to the code to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception or a derived exception type is thrown. - - The type of the exception expected to be thrown - A delegate to the task to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception is thrown (and not a derived exception type). - - The type of the exception expected to be thrown - A delegate to the code to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception is thrown (and not a derived exception type). - Generally used to test property accessors. - - The type of the exception expected to be thrown - A delegate to the code to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception is thrown (and not a derived exception type). - - The type of the exception expected to be thrown - A delegate to the task to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception is thrown (and not a derived exception type), where the exception - derives from and has the given parameter name. - - The parameter name that is expected to be in the exception - A delegate to the code to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - Verifies that the exact exception is thrown (and not a derived exception type), where the exception - derives from and has the given parameter name. - - The parameter name that is expected to be in the exception - A delegate to the code to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - - - - Verifies that the exact exception is thrown (and not a derived exception type), where the exception - derives from and has the given parameter name. - - The parameter name that is expected to be in the exception - A delegate to the task to be tested - The exception that was thrown, when successful - Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown - - - - - - - Records any exception which is thrown by the given code. - - The code which may thrown an exception. - Returns the exception that was thrown by the code; null, otherwise. - - - - Records any exception which is thrown by the given code that has - a return value. Generally used for testing property accessors. - - The code which may thrown an exception. - Returns the exception that was thrown by the code; null, otherwise. - - - - - - - Records any exception which is thrown by the given task. - - The task which may thrown an exception. - Returns the exception that was thrown by the code; null, otherwise. - - - - Verifies that two objects are not the same instance. - - The expected object instance - The actual object instance - Thrown when the objects are the same instance - - - - Verifies that two objects are the same instance. - - The expected object instance - The actual object instance - Thrown when the objects are not the same instance - - - - Verifies that an object reference is not null. - - The object to be validated - Thrown when the object is not null - - - - Verifies that an object reference is null. - - The object to be inspected - Thrown when the object reference is not null - - - - Verifies that the provided object raised INotifyPropertyChanged.PropertyChanged - as a result of executing the given test code. - - The object which should raise the notification - The property name for which the notification should be raised - The test code which should cause the notification to be raised - Thrown when the notification is not raised - - - - Verifies that a value is within a given range. - - The type of the value to be compared - The actual value to be evaluated - The (inclusive) low value of the range - The (inclusive) high value of the range - Thrown when the value is not in the given range - - - - Verifies that a value is within a given range, using a comparer. - - The type of the value to be compared - The actual value to be evaluated - The (inclusive) low value of the range - The (inclusive) high value of the range - The comparer used to evaluate the value's range - Thrown when the value is not in the given range - - - - Verifies that a value is not within a given range, using the default comparer. - - The type of the value to be compared - The actual value to be evaluated - The (inclusive) low value of the range - The (inclusive) high value of the range - Thrown when the value is in the given range - - - - Verifies that a value is not within a given range, using a comparer. - - The type of the value to be compared - The actual value to be evaluated - The (inclusive) low value of the range - The (inclusive) high value of the range - The comparer used to evaluate the value's range - Thrown when the value is in the given range - - - - Verifies that a set is a proper subset of another set. - - The type of the object to be verified - The expected superset - The set expected to be a proper subset - Thrown when the actual set is not a proper subset of the expected set - - - - Verifies that a set is a proper superset of another set. - - The type of the object to be verified - The expected subset - The set expected to be a proper superset - Thrown when the actual set is not a proper superset of the expected set - - - - Verifies that a set is a subset of another set. - - The type of the object to be verified - The expected superset - The set expected to be a subset - Thrown when the actual set is not a subset of the expected set - - - - Verifies that a set is a superset of another set. - - The type of the object to be verified - The expected subset - The set expected to be a superset - Thrown when the actual set is not a superset of the expected set - - - - Verifies that a string contains a given sub-string, using the current culture. - - The sub-string expected to be in the string - The string to be inspected - Thrown when the sub-string is not present inside the string - - - - Verifies that a string contains a given sub-string, using the given comparison type. - - The sub-string expected to be in the string - The string to be inspected - The type of string comparison to perform - Thrown when the sub-string is not present inside the string - - - - Verifies that a string does not contain a given sub-string, using the current culture. - - The sub-string which is expected not to be in the string - The string to be inspected - Thrown when the sub-string is present inside the string - - - - Verifies that a string does not contain a given sub-string, using the current culture. - - The sub-string which is expected not to be in the string - The string to be inspected - The type of string comparison to perform - Thrown when the sub-string is present inside the given string - - - - Verifies that a string starts with a given string, using the current culture. - - The string expected to be at the start of the string - The string to be inspected - Thrown when the string does not start with the expected string - - - - Verifies that a string starts with a given string, using the given comparison type. - - The string expected to be at the start of the string - The string to be inspected - The type of string comparison to perform - Thrown when the string does not start with the expected string - - - - Verifies that a string ends with a given string, using the current culture. - - The string expected to be at the end of the string - The string to be inspected - Thrown when the string does not end with the expected string - - - - Verifies that a string ends with a given string, using the given comparison type. - - The string expected to be at the end of the string - The string to be inspected - The type of string comparison to perform - Thrown when the string does not end with the expected string - - - - Verifies that a string matches a regular expression. - - The regex pattern expected to match - The string to be inspected - Thrown when the string does not match the regex pattern - - - - Verifies that a string matches a regular expression. - - The regex expected to match - The string to be inspected - Thrown when the string does not match the regex - - - - Verifies that a string does not match a regular expression. - - The regex pattern expected not to match - The string to be inspected - Thrown when the string matches the regex pattern - - - - Verifies that a string does not match a regular expression. - - The regex expected not to match - The string to be inspected - Thrown when the string matches the regex - - - - Verifies that two strings are equivalent. - - The expected string value. - The actual string value. - Thrown when the strings are not equivalent. - - - - Verifies that two strings are equivalent. - - The expected string value. - The actual string value. - If set to true, ignores cases differences. The invariant culture is used. - If set to true, treats \r\n, \r, and \n as equivalent. - If set to true, treats spaces and tabs (in any non-zero quantity) as equivalent. - Thrown when the strings are not equivalent. - - - - Verifies that an object is of the given type or a derived type. - - The type the object should be - The object to be evaluated - The object, casted to type T when successful - Thrown when the object is not the given type - - - - Verifies that an object is of the given type or a derived type. - - The type the object should be - The object to be evaluated - Thrown when the object is not the given type - - - - Verifies that an object is not exactly the given type. - - The type the object should not be - The object to be evaluated - Thrown when the object is the given type - - - - Verifies that an object is not exactly the given type. - - The type the object should not be - The object to be evaluated - Thrown when the object is the given type - - - - Verifies that an object is exactly the given type (and not a derived type). - - The type the object should be - The object to be evaluated - The object, casted to type T when successful - Thrown when the object is not the given type - - - - Verifies that an object is exactly the given type (and not a derived type). - - The type the object should be - The object to be evaluated - Thrown when the object is not the given type - - - - Formats arguments for display in theories. - - - - - Format the value for presentation. - - The value to be formatted. - The formatted value. - - - - Default implementation of used by the xUnit.net range assertions. - - The type that is being compared. - - - - - - - Default implementation of used by the xUnit.net equality assertions. - - The type that is being compared. - - - - Initializes a new instance of the class. - - Set to true to skip type equality checks. - The inner comparer to be used when the compared objects are enumerable. - - - - - - - - - - A class that wraps to create . - - The type that is being compared. - - - - Initializes a new instance of the class. - - The comparer that is being adapted. - - - - - - - - - - Base class for exceptions that have actual and expected values - - - - - Creates a new instance of the class. - - The expected value - The actual value - The user message to be shown - The title to use for the expected value (defaults to "Expected") - The title to use for the actual value (defaults to "Actual") - - - - Gets the actual value. - - - - - Gets the title used for the actual value. - - - - - Gets the expected value. - - - - - Gets the title used for the expected value. - - - - - Gets a message that describes the current exception. Includes the expected and actual values. - - The error message that explains the reason for the exception, or an empty string(""). - 1 - - - - Exception thrown when the collection did not contain exactly the given number element. - - - - - Initializes a new instance of the class. - - The expected number of items in the collection. - The actual number of items in the collection. - - - - Exception thrown when Assert.Collection fails. - - - - - Creates a new instance of the class. - - The expected number of items in the collection. - The actual number of items in the collection. - The index of the position where the first comparison failure occurred. - The exception that was thrown during the comparison failure. - - - - The actual number of items in the collection. - - - - - The expected number of items in the collection. - - - - - The index of the position where the first comparison failure occurred, or -1 if - comparisions did not occur (because the actual and expected counts differed). - - - - - - - - - - - Exception thrown when an All assertion has one or more items fail an assertion. - - - - - Creates a new instance of the class. - - The total number of items that were in the collection. - The list of errors that occurred during the test pass. - - - - The errors that occurred during execution of the test. - - - - - - - - Exception thrown when a collection unexpectedly does not contain the expected value. - - - - - Creates a new instance of the class. - - The expected object value - The actual value - - - - Exception thrown when a collection unexpectedly contains the expected value. - - - - - Creates a new instance of the class. - - The expected object value - The actual value - - - - Exception thrown when a string unexpectedly matches a regular expression. - - - - - Creates a new instance of the class. - - The regular expression pattern expected not to match - The actual value - - - - Exception thrown when a collection is unexpectedly not empty. - - - - - Creates a new instance of the class. - - - - - Exception thrown when a string does not end with the expected value. - - - - - Creates a new instance of the class. - - The expected string value - The actual value - - - - Exception thrown when two values are unexpectedly not equal. - - - - - Creates a new instance of the class. - - The expected object value - The actual object value - - - - Creates a new instance of the class for string comparisons. - - The expected string value - The actual string value - The first index in the expected string where the strings differ - The first index in the actual string where the strings differ - - - - Gets the index into the actual value where the values first differed. - Returns -1 if the difference index points were not provided. - - - - - Gets the index into the expected value where the values first differed. - Returns -1 if the difference index points were not provided. - - - - - - - - Exception thrown when a value is unexpectedly true. - - - - - Creates a new instance of the class. - - The user message to be display, or null for the default message - The actual value - - - - Exception thrown when a value is unexpectedly not in the given range. - - - - - Creates a new instance of the class. - - The actual object value - The low value of the range - The high value of the range - - - - Gets the actual object value - - - - - Gets the high value of the range - - - - - Gets the low value of the range - - - - - Gets a message that describes the current exception. - - The error message that explains the reason for the exception, or an empty string(""). - - - - Exception thrown when the value is unexpectedly not of the given type or a derived type. - - - - - Creates a new instance of the class. - - The expected type - The actual object value - - - - Exception thrown when the value is unexpectedly of the exact given type. - - - - - Creates a new instance of the class. - - The expected type - The actual object value - - - - Exception thrown when the value is unexpectedly not of the exact given type. - - - - - Creates a new instance of the class. - - The expected type name - The actual type name - - - - Exception thrown when a string does not match a regular expression. - - - - - Creates a new instance of the class. - - The expected regular expression pattern - The actual value - - - - Exception thrown when a collection is unexpectedly empty. - - - - - Creates a new instance of the class. - - - - - Exception thrown when two values are unexpectedly equal. - - - - - Creates a new instance of the class. - - - - - Exception thrown when a value is unexpectedly in the given range. - - - - - Creates a new instance of the class. - - The actual object value - The low value of the range - The high value of the range - - - - Gets the actual object value - - - - - Gets the high value of the range - - - - - Gets the low value of the range - - - - - Gets a message that describes the current exception. - - The error message that explains the reason for the exception, or an empty string(""). - - - - Exception thrown when an object is unexpectedly null. - - - - - Creates a new instance of the class. - - - - - Exception thrown when two values are unexpected the same instance. - - - - - Creates a new instance of the class. - - - - - Exception thrown when an object reference is unexpectedly not null. - - - - - Creates a new instance of the class. - - - - - - Exception to be thrown from theory execution when the number of - parameter values does not the test method signature. - - - - - Exception thrown when a set is not a proper subset of another set. - - - - - Creates a new instance of the class. - - - - - Exception thrown when a set is not a proper superset of another set. - - - - - Creates a new instance of the class. - - - - - Exception thrown when code unexpectedly fails change a property. - - - - - Creates a new instance of the class. Call this constructor - when no exception was thrown. - - The name of the property that was expected to be changed. - - - - Exception thrown when two object references are unexpectedly not the same instance. - - - - - Creates a new instance of the class. - - The expected object reference - The actual object reference - - - - Exception thrown when the collection did not contain exactly one element. - - - - - Initializes a new instance of the class. - - The numbers of items in the collection. - - - - Exception thrown when a string does not start with the expected value. - - - - - Creates a new instance of the class. - - The expected string value - The actual value - - - - Exception thrown when a set is not a subset of another set. - - - - - Creates a new instance of the class. - - - - - Exception thrown when a set is not a superset of another set. - - - - - Creates a new instance of the class. - - - - - Exception thrown when code unexpectedly fails to throw an exception. - - - - - Creates a new instance of the class. Call this constructor - when no exception was thrown. - - The type of the exception that was expected - - - - Creates a new instance of the class. Call this constructor - when an exception of the wrong type was thrown. - - The type of the exception that was expected - The actual exception that was thrown - - - - THIS CONSTRUCTOR IS FOR UNIT TESTING PURPOSES ONLY. - - - - - Gets a string representation of the frames on the call stack at the time the current exception was thrown. - - A string that describes the contents of the call stack, with the most recent method call appearing first. - - - - Exception thrown when a value is unexpectedly false. - - - - - Creates a new instance of the class. - - The user message to be displayed, or null for the default message - The actual value - - - - The base assert exception class - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The user message to be displayed - - - - Initializes a new instance of the class. - - The user message to be displayed - The inner exception - - - - Initializes a new instance of the class. - - The user message to be displayed - The stack trace to be displayed - - - - Gets a string representation of the frames on the call stack at the time the current exception was thrown. - - A string that describes the contents of the call stack, with the most recent method call appearing first. - - - - Gets the user message - - - - - - - diff --git a/References/LinqPad/LINQPad.exe b/References/LinqPad/LINQPad.exe deleted file mode 100644 index 15d73f2..0000000 Binary files a/References/LinqPad/LINQPad.exe and /dev/null differ diff --git a/References/LinqPad/LINQPad.exe.config b/References/LinqPad/LINQPad.exe.config deleted file mode 100644 index ed64854..0000000 --- a/References/LinqPad/LINQPad.exe.config +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/References/net45/System.Reactive.Interfaces.dll b/References/net45/System.Reactive.Interfaces.dll deleted file mode 100644 index 76631b1..0000000 Binary files a/References/net45/System.Reactive.Interfaces.dll and /dev/null differ diff --git a/References/net45/System.Reactive.Interfaces.xml b/References/net45/System.Reactive.Interfaces.xml deleted file mode 100644 index 1204bd4..0000000 --- a/References/net45/System.Reactive.Interfaces.xml +++ /dev/null @@ -1,336 +0,0 @@ - - - - System.Reactive.Interfaces - - - - - The System.Reactive namespace contains interfaces and classes used throughout the Reactive Extensions library. - - - - - The System.Reactive.Concurrency namespace contains interfaces and classes that provide the scheduler infrastructure used by Reactive Extensions to construct and - process event streams. Schedulers are used to parameterize the concurrency introduced by query operators, provide means to virtualize time, to process historical data, - and to write unit tests for functionality built using Reactive Extensions constructs. - - - - - Represents a work item that has been scheduled. - - Absolute time representation type. - - - - Gets the absolute time at which the item is due for invocation. - - - - - Invokes the work item. - - - - - Represents an object that schedules units of work. - - - - - Gets the scheduler's notion of current time. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - - - - Scheduler with support for starting long-running tasks. - This type of scheduler can be used to run loops more efficiently instead of using recursive scheduling. - - - - - Schedules a long-running piece of work. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - Notes to implementers - The returned disposable object should not prevent the work from starting, but only set the cancellation flag passed to the specified action. - - - - - Scheduler with support for running periodic tasks. - This type of scheduler can be used to run timers more efficiently instead of using recursive scheduling. - - - - - Schedules a periodic piece of work. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - - - - Abstraction for a stopwatch to compute time relative to a starting point. - - - - - Gets the time elapsed since the stopwatch object was obtained. - - - - - Provider for IStopwatch objects. - - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - The System.Reactive.Disposables namespace contains interfaces and classes that provide a compositional set of constructs used to deal with resource and subscription - management in Reactive Extensions. Those types are used extensively within the implementation of Reactive Extensions and are useful when writing custom query operators or - schedulers. - - - - - Disposable resource with disposal state tracking. - - - - - Gets a value that indicates whether the object is disposed. - - - - - The System.Reactive.Linq namespace contains interfaces and classes that support expressing queries over observable sequences, using Language Integrated Query (LINQ). - Query operators are made available as extension methods for IObservable<T> and IQbservable<T> defined on the Observable and Qbservable classes, respectively. - - - - - Represents an observable sequence of elements that have a common key. - - - The type of the key shared by all elements in the group. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the elements in the group. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Gets the common key. - - - - - Provides functionality to evaluate queries against a specific data source wherein the type of the data is known. - - - The type of the data in the data source. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Provides functionality to evaluate queries against a specific data source wherein the type of the data is not specified. - - - - - Gets the type of the element(s) that are returned when the expression tree associated with this instance of IQbservable is executed. - - - - - Gets the expression tree that is associated with the instance of IQbservable. - - - - - Gets the query provider that is associated with this data source. - - - - - Defines methods to create and execute queries that are described by an IQbservable object. - - - - - Constructs an IQbservable>TResult< object that can evaluate the query represented by a specified expression tree. - - The type of the elements of the System.Reactive.Linq.IQbservable<T> that is returned. - Expression tree representing the query. - IQbservable object that can evaluate the given query expression. - - - - The System.Reactive.Subjects namespace contains interfaces and classes to represent subjects, which are objects implementing both IObservable<T> and IObserver<T>. - Subjects are often used as sources of events, allowing one party to raise events and allowing another party to write queries over the event stream. Because of their ability to - have multiple registered observers, subjects are also used as a facility to provide multicast behavior for event streams in queries. - - - - - Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence. - - - The type of the elements in the sequence. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established. - - Disposable used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence. - - - - Represents an object that is both an observable sequence as well as an observer. - - The type of the elements processed by the subject. - - - - Represents an object that is both an observable sequence as well as an observer. - - - The type of the elements received by the subject. - This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the elements produced by the subject. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event. - - - The type of the sender that raised the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the event data generated by the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Gets the sender object that raised the event. - - - - - Gets the event data that was generated by the event. - - - - - Represents a data stream signaling its elements by means of an event. - - The type of the event data generated by the event. - - - - Event signaling the next element in the data stream. - - - - - Represents a data stream signaling its elements by means of an event. - - - The type of the event data generated by the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Event signaling the next element in the data stream. - - - - - Provides a mechanism for receiving push-based notifications and returning a response. - - - The type of the elements received by the observer. - This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the result returned from the observer's notification handlers. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Notifies the observer of a new element in the sequence. - - The new element in the sequence. - Result returned upon observation of a new element. - - - - Notifies the observer that an exception has occurred. - - The exception that occurred. - Result returned upon observation of an error. - - - - Notifies the observer of the end of the sequence. - - Result returned upon observation of the sequence completion. - - - diff --git a/References/netstandard1.0/System.Reactive.Core.dll b/References/netstandard1.0/System.Reactive.Core.dll deleted file mode 100644 index 2ae931e..0000000 Binary files a/References/netstandard1.0/System.Reactive.Core.dll and /dev/null differ diff --git a/References/netstandard1.0/System.Reactive.Core.xml b/References/netstandard1.0/System.Reactive.Core.xml deleted file mode 100644 index 519b035..0000000 --- a/References/netstandard1.0/System.Reactive.Core.xml +++ /dev/null @@ -1,2944 +0,0 @@ - - - - System.Reactive.Core - - - - - The System.Reactive.PlatformServices namespace contains interfaces and classes used by the runtime infrastructure of Reactive Extensions. - Those are not intended to be used directly from user code and are subject to change in future releases of the product. - - - - - (Infrastructure) Services to rethrow exceptions. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Rethrows the specified exception. - - Exception to rethrow. - - - - (Infrastructure) Provides access to the host's lifecycle management services. - - - - - Event that gets raised when the host suspends the application. - - - - - Event that gets raised when the host resumes the application. - - - - - Adds a reference to the host lifecycle manager, causing it to be sending notifications. - - - - - Removes a reference to the host lifecycle manager, causing it to stop sending notifications - if the removed reference was the last one. - - - - - (Infrastructure) Provides notifications about the host's lifecycle events. - - - - - Event that gets raised when the host suspends. - - - - - Event that gets raised when the host resumes. - - - - - (Infrastructure) Event arguments for host suspension events. - - - - - (Infrastructure) Event arguments for host resumption events. - - - - - (Infrastructure) Interface for enlightenment providers. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - (Infastructure) Tries to gets the specified service. - - Service type. - Optional set of arguments. - Service instance or null if not found. - - - - (Infrastructure) Provider for platform-specific framework enlightenments. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - - - - - (Infrastructure) Gets the current enlightenment provider. If none is loaded yet, accessing this property triggers provider resolution. - - - This member is used by the Rx infrastructure and not meant for public consumption or implementation. - - - - - (Infrastructure) Provides access to local system clock services. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Gets the local system clock time. - - - - - Adds a reference to the system clock monitor, causing it to be sending notifications. - - Thrown when the system doesn't support sending clock change notifications. - - - - Removes a reference to the system clock monitor, causing it to stop sending notifications - if the removed reference was the last one. - - - - - (Infrastructure) Provides access to the local system clock. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Gets the current time. - - - - - (Infrastructure) Provides a mechanism to notify local schedulers about system clock changes. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Event that gets raised when a system clock change is detected. - - - - - (Infrastructure) Event arguments for system clock change notifications. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Creates a new system clock notification object with unknown old and new times. - - - - - Creates a new system clock notification object with the specified old and new times. - - Time before the system clock changed, or DateTimeOffset.MinValue if not known. - Time after the system clock changed, or DateTimeOffset.MaxValue if not known. - - - - Gets the time before the system clock changed, or DateTimeOffset.MinValue if not known. - - - - - Gets the time after the system clock changed, or DateTimeOffset.MaxValue if not known. - - - - - (Infrastructure) Provides access to the local system clock. - - - - - Gets the current time. - - - - - (Infrastructure) Monitors for system clock changes based on a periodic timer. - - - - - Creates a new monitor for system clock changes with the specified polling frequency. - - Polling frequency for system clock changes. - - - - Event that gets raised when a system clock change is detected. - - - - - (Infrastructure) Services to leverage evolving TPL Task APIs. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Attempts to transition the underlying Task{T} into the Canceled state. - - Type of the result of the underlying task. - Task completion source whose underlying task to transition into the Canceled state. - Cancellation token that triggered the cancellation. - True if the operation was successful; false if the operation was unsuccessful or the object has already been disposed. - - - - Provides a set of static methods for creating observers. - - - - - Creates an observer from a notification callback. - - The type of the elements received by the observer. - Action that handles a notification. - The observer object that invokes the specified handler using a notification corresponding to each message it receives. - is null. - - - - Creates a notification callback from an observer. - - The type of the elements received by the observer. - Observer object. - The action that forwards its input notification to the underlying observer. - is null. - - - - Creates an observer from the specified OnNext action. - - The type of the elements received by the observer. - Observer's OnNext action implementation. - The observer object implemented using the given actions. - is null. - - - - Creates an observer from the specified OnNext and OnError actions. - - The type of the elements received by the observer. - Observer's OnNext action implementation. - Observer's OnError action implementation. - The observer object implemented using the given actions. - or is null. - - - - Creates an observer from the specified OnNext and OnCompleted actions. - - The type of the elements received by the observer. - Observer's OnNext action implementation. - Observer's OnCompleted action implementation. - The observer object implemented using the given actions. - or is null. - - - - Creates an observer from the specified OnNext, OnError, and OnCompleted actions. - - The type of the elements received by the observer. - Observer's OnNext action implementation. - Observer's OnError action implementation. - Observer's OnCompleted action implementation. - The observer object implemented using the given actions. - or or is null. - - - - Hides the identity of an observer. - - The type of the elements received by the source observer. - An observer whose identity to hide. - An observer that hides the identity of the specified observer. - is null. - - - - Checks access to the observer for grammar violations. This includes checking for multiple OnError or OnCompleted calls, as well as reentrancy in any of the observer methods. - If a violation is detected, an InvalidOperationException is thrown from the offending observer method call. - - The type of the elements received by the source observer. - The observer whose callback invocations should be checked for grammar violations. - An observer that checks callbacks invocations against the observer grammar and, if the checks pass, forwards those to the specified observer. - is null. - - - - Synchronizes access to the observer such that its callback methods cannot be called concurrently from multiple threads. This overload is useful when coordinating access to an observer. - Notice reentrant observer callbacks on the same thread are still possible. - - The type of the elements received by the source observer. - The observer whose callbacks should be synchronized. - An observer that delivers callbacks to the specified observer in a synchronized manner. - is null. - - Because a Monitor is used to perform the synchronization, there's no protection against reentrancy from the same thread. - Hence, overlapped observer callbacks are still possible, which is invalid behavior according to the observer grammar. In order to protect against this behavior as - well, use the overload, passing true for the second parameter. - - - - - Synchronizes access to the observer such that its callback methods cannot be called concurrently. This overload is useful when coordinating access to an observer. - The parameter configures the type of lock used for synchronization. - - The type of the elements received by the source observer. - The observer whose callbacks should be synchronized. - If set to true, reentrant observer callbacks will be queued up and get delivered to the observer in a sequential manner. - An observer that delivers callbacks to the specified observer in a synchronized manner. - is null. - - When the parameter is set to false, behavior is identical to the overload which uses - a Monitor for synchronization. When the parameter is set to true, an - is used to queue up callbacks to the specified observer if a reentrant call is made. - - - - - Synchronizes access to the observer such that its callback methods cannot be called concurrently by multiple threads, using the specified gate object for use by a Monitor-based lock. - This overload is useful when coordinating multiple observers that access shared state by synchronizing on a common gate object. - Notice reentrant observer callbacks on the same thread are still possible. - - The type of the elements received by the source observer. - The observer whose callbacks should be synchronized. - Gate object to synchronize each observer call on. - An observer that delivers callbacks to the specified observer in a synchronized manner. - or is null. - - Because a Monitor is used to perform the synchronization, there's no protection against reentrancy from the same thread. - Hence, overlapped observer callbacks are still possible, which is invalid behavior according to the observer grammar. In order to protect against this behavior as - well, use the overload. - - - - - Synchronizes access to the observer such that its callback methods cannot be called concurrently, using the specified asynchronous lock to protect against concurrent and reentrant access. - This overload is useful when coordinating multiple observers that access shared state by synchronizing on a common asynchronous lock. - - The type of the elements received by the source observer. - The observer whose callbacks should be synchronized. - Gate object to synchronize each observer call on. - An observer that delivers callbacks to the specified observer in a synchronized manner. - or is null. - - - - Schedules the invocation of observer methods on the given scheduler. - - The type of the elements received by the source observer. - The observer to schedule messages for. - Scheduler to schedule observer messages on. - Observer whose messages are scheduled on the given scheduler. - or is null. - - - - Schedules the invocation of observer methods on the given synchonization context. - - The type of the elements received by the source observer. - The observer to schedule messages for. - Synchonization context to schedule observer messages on. - Observer whose messages are scheduled on the given synchonization context. - or is null. - - - - Converts an observer to a progress object. - - The type of the progress objects received by the source observer. - The observer to convert. - Progress object whose Report messages correspond to the observer's OnNext messages. - is null. - - - - Converts an observer to a progress object, using the specified scheduler to invoke the progress reporting method. - - The type of the progress objects received by the source observer. - The observer to convert. - Scheduler to report progress on. - Progress object whose Report messages correspond to the observer's OnNext messages. - or is null. - - - - Converts a progress object to an observer. - - The type of the progress objects received by the progress reporter. - The progress object to convert. - Observer whose OnNext messages correspond to the progress object's Report messages. - is null. - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - Looks up a localized string similar to Using the Scheduler.{0} property is no longer supported due to refactoring of the API surface and elimination of platform-specific dependencies. Please include System.Reactive.PlatformServices for your target platform and use the {0}Scheduler type instead.. - - - - - Looks up a localized string similar to OnCompleted notification doesn't have a value.. - - - - - Looks up a localized string similar to Disposable has already been assigned.. - - - - - Looks up a localized string similar to Failed to start monitoring system clock changes.. - - - - - Looks up a localized string similar to Heap is empty.. - - - - - Looks up a localized string similar to Reentrancy has been detected.. - - - - - Looks up a localized string similar to Observer has already terminated.. - - - - - Looks up a localized string similar to This scheduler operation has already been awaited.. - - - - - Looks up a localized string similar to Disposables collection can not contain null values.. - - - - - Class to create an IObservable<T> instance from a delegate-based implementation of the Subscribe method. - - The type of the elements in the sequence. - - - - Creates an observable sequence object from the specified subscription function. - - Subscribe method implementation. - is null. - - - - Calls the subscription function that was supplied to the constructor. - - Observer to send notifications to. - Disposable object representing an observer's subscription to the observable sequence. - - - - Class to create an IObserver<T> instance from delegate-based implementations of the On* methods. - - The type of the elements in the sequence. - - - - Creates an observer from the specified OnNext, OnError, and OnCompleted actions. - - Observer's OnNext action implementation. - Observer's OnError action implementation. - Observer's OnCompleted action implementation. - or or is null. - - - - Creates an observer from the specified OnNext action. - - Observer's OnNext action implementation. - is null. - - - - Creates an observer from the specified OnNext and OnError actions. - - Observer's OnNext action implementation. - Observer's OnError action implementation. - or is null. - - - - Creates an observer from the specified OnNext and OnCompleted actions. - - Observer's OnNext action implementation. - Observer's OnCompleted action implementation. - or is null. - - - - Calls the onNext action. - - Next element in the sequence. - - - - Calls the onError action. - - The error that has occurred. - - - - Calls the onCompleted action. - - - - - This class fuses logic from ObserverBase, AnonymousObserver, and SafeObserver into one class. When an observer - needs to be safeguarded, an instance of this type can be created by SafeObserver.Create when it detects its - input is an AnonymousObserver, which is commonly used by end users when using the Subscribe extension methods - that accept delegates for the On* handlers. By doing the fusion, we make the call stack depth shorter which - helps debugging and some performance. - - - - - Indicates the type of a notification. - - - - - Represents an OnNext notification. - - - - - Represents an OnError notification. - - - - - Represents an OnCompleted notification. - - - - - Represents a notification to an observer. - - The type of the elements received by the observer. - - - - Default constructor used by derived types. - - - - - Returns the value of an OnNext notification or throws an exception. - - - - - Returns a value that indicates whether the notification has a value. - - - - - Returns the exception of an OnError notification or returns null. - - - - - Gets the kind of notification that is represented. - - - - - Represents an OnNext notification to an observer. - - - - - Constructs a notification of a new value. - - - - - Returns the value of an OnNext notification. - - - - - Returns null. - - - - - Returns true. - - - - - Returns NotificationKind.OnNext. - - - - - Returns the hash code for this instance. - - - - - Indicates whether this instance and a specified object are equal. - - - - - Returns a string representation of this instance. - - - - - Invokes the observer's method corresponding to the notification. - - Observer to invoke the notification on. - - - - Invokes the observer's method corresponding to the notification and returns the produced result. - - Observer to invoke the notification on. - Result produced by the observation. - - - - Invokes the delegate corresponding to the notification. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - - - - Invokes the delegate corresponding to the notification and returns the produced result. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - Result produced by the observation. - - - - Represents an OnError notification to an observer. - - - - - Constructs a notification of an exception. - - - - - Throws the exception. - - - - - Returns the exception. - - - - - Returns false. - - - - - Returns NotificationKind.OnError. - - - - - Returns the hash code for this instance. - - - - - Indicates whether this instance and other are equal. - - - - - Returns a string representation of this instance. - - - - - Invokes the observer's method corresponding to the notification. - - Observer to invoke the notification on. - - - - Invokes the observer's method corresponding to the notification and returns the produced result. - - Observer to invoke the notification on. - Result produced by the observation. - - - - Invokes the delegate corresponding to the notification. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - - - - Invokes the delegate corresponding to the notification and returns the produced result. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - Result produced by the observation. - - - - Represents an OnCompleted notification to an observer. - - - - - Constructs a notification of the end of a sequence. - - - - - Throws an InvalidOperationException. - - - - - Returns null. - - - - - Returns false. - - - - - Returns NotificationKind.OnCompleted. - - - - - Returns the hash code for this instance. - - - - - Indicates whether this instance and other are equal. - - - - - Returns a string representation of this instance. - - - - - Invokes the observer's method corresponding to the notification. - - Observer to invoke the notification on. - - - - Invokes the observer's method corresponding to the notification and returns the produced result. - - Observer to invoke the notification on. - Result produced by the observation. - - - - Invokes the delegate corresponding to the notification. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - - - - Invokes the delegate corresponding to the notification and returns the produced result. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - Result produced by the observation. - - - - Determines whether the current Notification<T> object has the same observer message payload as a specified Notification<T> value. - - An object to compare to the current Notification<T> object. - true if both Notification<T> objects have the same observer message payload; otherwise, false. - - Equality of Notification<T> objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any). - This means two Notification<T> objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method. - In case one wants to determine whether two Notification<T> objects represent the same observer method call, use Object.ReferenceEquals identity equality instead. - - - - - Determines whether the two specified Notification<T> objects have the same observer message payload. - - The first Notification<T> to compare, or null. - The second Notification<T> to compare, or null. - true if the first Notification<T> value has the same observer message payload as the second Notification<T> value; otherwise, false. - - Equality of Notification<T> objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any). - This means two Notification<T> objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method. - In case one wants to determine whether two Notification<T> objects represent the same observer method call, use Object.ReferenceEquals identity equality instead. - - - - - Determines whether the two specified Notification<T> objects have a different observer message payload. - - The first Notification<T> to compare, or null. - The second Notification<T> to compare, or null. - true if the first Notification<T> value has a different observer message payload as the second Notification<T> value; otherwise, false. - - Equality of Notification<T> objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any). - This means two Notification<T> objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method. - In case one wants to determine whether two Notification<T> objects represent a different observer method call, use Object.ReferenceEquals identity equality instead. - - - - - Determines whether the specified System.Object is equal to the current Notification<T>. - - The System.Object to compare with the current Notification<T>. - true if the specified System.Object is equal to the current Notification<T>; otherwise, false. - - Equality of Notification<T> objects is based on the equality of the observer message payload they represent, including the notification Kind and the Value or Exception (if any). - This means two Notification<T> objects can be equal even though they don't represent the same observer method call, but have the same Kind and have equal parameters passed to the observer method. - In case one wants to determine whether two Notification<T> objects represent the same observer method call, use Object.ReferenceEquals identity equality instead. - - - - - Invokes the observer's method corresponding to the notification. - - Observer to invoke the notification on. - - - - Invokes the observer's method corresponding to the notification and returns the produced result. - - The type of the result returned from the observer's notification handlers. - Observer to invoke the notification on. - Result produced by the observation. - - - - Invokes the delegate corresponding to the notification. - - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - - - - Invokes the delegate corresponding to the notification and returns the produced result. - - The type of the result returned from the notification handler delegates. - Delegate to invoke for an OnNext notification. - Delegate to invoke for an OnError notification. - Delegate to invoke for an OnCompleted notification. - Result produced by the observation. - - - - Returns an observable sequence with a single notification, using the immediate scheduler. - - The observable sequence that surfaces the behavior of the notification upon subscription. - - - - Returns an observable sequence with a single notification. - - Scheduler to send out the notification calls on. - The observable sequence that surfaces the behavior of the notification upon subscription. - - - - Provides a set of static methods for constructing notifications. - - - - - Creates an object that represents an OnNext notification to an observer. - - The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence. - The value contained in the notification. - The OnNext notification containing the value. - - - - Creates an object that represents an OnError notification to an observer. - - The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence. - The exception contained in the notification. - The OnError notification containing the exception. - is null. - - - - Creates an object that represents an OnCompleted notification to an observer. - - The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence. - The OnCompleted notification. - - - - Abstract base class for implementations of the IObservable<T> interface. - - - If you don't need a named type to create an observable sequence (i.e. you rather need - an instance rather than a reusable type), use the Observable.Create method to create - an observable sequence with specified subscription behavior. - - The type of the elements in the sequence. - - - - Subscribes the given observer to the observable sequence. - - Observer that will receive notifications from the observable sequence. - Disposable object representing an observer's subscription to the observable sequence. - is null. - - - - Implement this method with the core subscription logic for the observable sequence. - - Observer to send notifications to. - Disposable object representing an observer's subscription to the observable sequence. - - - - Abstract base class for implementations of the IObserver<T> interface. - - This base class enforces the grammar of observers where OnError and OnCompleted are terminal messages. - The type of the elements in the sequence. - - - - Creates a new observer in a non-stopped state. - - - - - Notifies the observer of a new element in the sequence. - - Next element in the sequence. - - - - Implement this method to react to the receival of a new element in the sequence. - - Next element in the sequence. - This method only gets called when the observer hasn't stopped yet. - - - - Notifies the observer that an exception has occurred. - - The error that has occurred. - is null. - - - - Implement this method to react to the occurrence of an exception. - - The error that has occurred. - This method only gets called when the observer hasn't stopped yet, and causes the observer to stop. - - - - Notifies the observer of the end of the sequence. - - - - - Implement this method to react to the end of the sequence. - - This method only gets called when the observer hasn't stopped yet, and causes the observer to stop. - - - - Disposes the observer, causing it to transition to the stopped state. - - - - - Core implementation of IDisposable. - - true if the Dispose call was triggered by the IDisposable.Dispose method; false if it was triggered by the finalizer. - - - - Represents a type with a single value. This type is often used to denote the successful completion of a void-returning method (C#) or a Sub procedure (Visual Basic). - - - - - Determines whether the specified Unit values is equal to the current Unit. Because Unit has a single value, this always returns true. - - An object to compare to the current Unit value. - Because Unit has a single value, this always returns true. - - - - Determines whether the specified System.Object is equal to the current Unit. - - The System.Object to compare with the current Unit. - true if the specified System.Object is a Unit value; otherwise, false. - - - - Returns the hash code for the current Unit value. - - A hash code for the current Unit value. - - - - Returns a string representation of the current Unit value. - - String representation of the current Unit value. - - - - Determines whether the two specified Unit values are equal. Because Unit has a single value, this always returns true. - - The first Unit value to compare. - The second Unit value to compare. - Because Unit has a single value, this always returns true. - - - - Determines whether the two specified Unit values are not equal. Because Unit has a single value, this always returns false. - - The first Unit value to compare. - The second Unit value to compare. - Because Unit has a single value, this always returns false. - - - - Gets the single unit value. - - - - - Asynchronous lock. - - - - - Queues the action for execution. If the caller acquires the lock and becomes the owner, - the queue is processed. If the lock is already owned, the action is queued and will get - processed by the owner. - - Action to queue for execution. - is null. - - - - Clears the work items in the queue and drops further work being queued. - - - - - (Infrastructure) Concurrency abstraction layer. - - - - - Gets the current CAL. If no CAL has been set yet, it will be initialized to the default. - - - - - (Infrastructure) Concurrency abstraction layer interface. - - - This type is used by the Rx infrastructure and not meant for public consumption or implementation. - No guarantees are made about forward compatibility of the type's functionality and its usage. - - - - - Queues a method for execution at the specified relative time. - - Method to execute. - State to pass to the method. - Time to execute the method on. - Disposable object that can be used to stop the timer. - - - - Queues a method for periodic execution based on the specified period. - - Method to execute; should be safe for reentrancy. - Period for running the method periodically. - Disposable object that can be used to stop the timer. - - - - Queues a method for execution. - - Method to execute. - State to pass to the method. - Disposable object that can be used to cancel the queued method. - - - - Blocking sleep operation. - - Time to sleep. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Gets whether long-running scheduling is supported. - - - - - Starts a new long-running thread. - - Method to execute. - State to pass to the method. - - - - Represents an object that schedules units of work on the current thread. - - Singleton instance of this type exposed through this static property. - - - - Gets the singleton instance of the current thread scheduler. - - - - - Gets a value that indicates whether the caller must call a Schedule method. - - - - - Gets a value that indicates whether the caller must call a Schedule method. - - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Represents an object that schedules units of work on the platform's default scheduler. - - Singleton instance of this type exposed through this static property. - - - - Gets the singleton instance of the default scheduler. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime, using a System.Threading.Timer object. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a periodic piece of work, using a System.Threading.Timer object. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is less than TimeSpan.Zero. - is null. - - - - Discovers scheduler services by interface type. - - Scheduler service interface type to discover. - Object implementing the requested service, if available; null otherwise. - - - - Represents an object that schedules units of work to run immediately on the current thread. - - Singleton instance of this type exposed through this static property. - - - - Gets the singleton instance of the immediate scheduler. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Abstract base class for machine-local schedulers, using the local system clock for time-based operations. - - - - - Gets the scheduler's notion of current time. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - Platform-specific scheduler implementations should reimplement IStopwatchProvider to provide a more - efficient IStopwatch implementation (if available). - - - - - Discovers scheduler services by interface type. The base class implementation returns - requested services for each scheduler interface implemented by the derived class. For - more control over service discovery, derived types can override this method. - - Scheduler service interface type to discover. - Object implementing the requested service, if available; null otherwise. - - - - Gate to protect local scheduler queues. - - - - - Gate to protect queues and to synchronize scheduling decisions and system clock - change management. - - - - - Long term work queue. Contains work that's due beyond SHORTTERM, computed at the - time of enqueueing. - - - - - Disposable resource for the long term timer that will reevaluate and dispatch the - first item in the long term queue. A serial disposable is used to make "dispose - current and assign new" logic easier. The disposable itself is never disposed. - - - - - Item at the head of the long term queue for which the current long term timer is - running. Used to detect changes in the queue and decide whether we should replace - or can continue using the current timer (because no earlier long term work was - added to the queue). - - - - - Short term work queue. Contains work that's due soon, computed at the time of - enqueueing or upon reevaluation of the long term queue causing migration of work - items. This queue is kept in order to be able to relocate short term items back - to the long term queue in case a system clock change occurs. - - - - - Set of disposable handles to all of the current short term work Schedule calls, - allowing those to be cancelled upon a system clock change. - - - - - Threshold where an item is considered to be short term work or gets moved from - long term to short term. - - - - - Maximum error ratio for timer drift. We've seen machines with 10s drift on a - daily basis, which is in the order 10E-4, so we allow for extra margin here. - This value is used to calculate early arrival for the long term queue timer - that will reevaluate work for the short term queue. - - Example: -------------------------------...---------------------*-----$ - ^ ^ - | | - early due - 0.999 1.0 - - We also make the gap between early and due at least LONGTOSHORT so we have - enough time to transition work to short term and as a courtesy to the - destination scheduler to manage its queues etc. - - - - - Minimum threshold for the long term timer to fire before the queue is reevaluated - for short term work. This value is chosen to be less than SHORTTERM in order to - ensure the timer fires and has work to transition to the short term queue. - - - - - Threshold used to determine when a short term timer has fired too early compared - to the absolute due time. This provides a last chance protection against early - completion of scheduled work, which can happen in case of time adjustment in the - operating system (cf. GetSystemTimeAdjustment). - - - - - Longest interval supported by timers in the BCL. - - - - - Creates a new local scheduler. - - - - - Enqueues absolute time scheduled work in the timer queue or the short term work list. - - State to pass to the action. - Absolute time to run the work on. The timer queue is responsible to execute the work close to the specified time, also accounting for system clock changes. - Action to run, potentially recursing into the scheduler. - Disposable object to prevent the work from running. - - - - Schedule work that's due in the short term. This leads to relative scheduling calls to the - underlying scheduler for short TimeSpan values. If the system clock changes in the meantime, - the short term work is attempted to be cancelled and reevaluated. - - Work item to schedule in the short term. The caller is responsible to determine the work is indeed short term. - - - - Callback to process the next short term work item. - - Recursive scheduler supplied by the underlying scheduler. - Disposable used to identify the work the timer was triggered for (see code for usage). - Empty disposable. Recursive work cancellation is wired through the original WorkItem. - - - - Schedule work that's due on the long term. This leads to the work being queued up for - eventual transitioning to the short term work list. - - Work item to schedule on the long term. The caller is responsible to determine the work is indeed long term. - - - - Updates the long term timer which is responsible to transition work from the head of the - long term queue to the short term work list. - - Should be called under the scheduler lock. - - - - Evaluates the long term queue, transitioning short term work to the short term list, - and adjusting the new long term processing timer accordingly. - - Ignored. - - - - Callback invoked when a system clock change is observed in order to adjust and reevaluate - the internal scheduling queues. - - Currently not used. - Currently not used. - - - - Represents a work item in the absolute time scheduler. - - - This type is very similar to ScheduledItem, but we need a different Invoke signature to allow customization - of the target scheduler (e.g. when called in a recursive scheduling context, see ExecuteNextShortTermWorkItem). - - - - - Represents a work item that closes over scheduler invocation state. Subtyping is - used to have a common type for the scheduler queues. - - - - - Abstract base class for scheduled work items. - - Absolute time representation type. - - - - Creates a new scheduled work item to run at the specified time. - - Absolute time at which the work item has to be executed. - Comparer used to compare work items based on their scheduled time. - is null. - - - - Gets the absolute time at which the item is due for invocation. - - - - - Invokes the work item. - - - - - Implement this method to perform the work item invocation, returning a disposable object for deep cancellation. - - Disposable object used to cancel the work item and/or derived work items. - - - - Compares the work item with another work item based on absolute time values. - - Work item to compare the current work item to. - Relative ordering between this and the specified work item. - The inequality operators are overloaded to provide results consistent with the IComparable implementation. Equality operators implement traditional reference equality semantics. - - - - Determines whether one specified ScheduledItem<TAbsolute> object is due before a second specified ScheduledItem<TAbsolute> object. - - The first object to compare. - The second object to compare. - true if the DueTime value of left is earlier than the DueTime value of right; otherwise, false. - This operator provides results consistent with the IComparable implementation. - - - - Determines whether one specified ScheduledItem<TAbsolute> object is due before or at the same of a second specified ScheduledItem<TAbsolute> object. - - The first object to compare. - The second object to compare. - true if the DueTime value of left is earlier than or simultaneous with the DueTime value of right; otherwise, false. - This operator provides results consistent with the IComparable implementation. - - - - Determines whether one specified ScheduledItem<TAbsolute> object is due after a second specified ScheduledItem<TAbsolute> object. - - The first object to compare. - The second object to compare. - true if the DueTime value of left is later than the DueTime value of right; otherwise, false. - This operator provides results consistent with the IComparable implementation. - - - - Determines whether one specified ScheduledItem<TAbsolute> object is due after or at the same time of a second specified ScheduledItem<TAbsolute> object. - - The first object to compare. - The second object to compare. - true if the DueTime value of left is later than or simultaneous with the DueTime value of right; otherwise, false. - This operator provides results consistent with the IComparable implementation. - - - - Determines whether two specified ScheduledItem<TAbsolute, TValue> objects are equal. - - The first object to compare. - The second object to compare. - true if both ScheduledItem<TAbsolute, TValue> are equal; otherwise, false. - This operator does not provide results consistent with the IComparable implementation. Instead, it implements reference equality. - - - - Determines whether two specified ScheduledItem<TAbsolute, TValue> objects are inequal. - - The first object to compare. - The second object to compare. - true if both ScheduledItem<TAbsolute, TValue> are inequal; otherwise, false. - This operator does not provide results consistent with the IComparable implementation. Instead, it implements reference equality. - - - - Determines whether a ScheduledItem<TAbsolute> object is equal to the specified object. - - The object to compare to the current ScheduledItem<TAbsolute> object. - true if the obj parameter is a ScheduledItem<TAbsolute> object and is equal to the current ScheduledItem<TAbsolute> object; otherwise, false. - - - - Returns the hash code for the current ScheduledItem<TAbsolute> object. - - A 32-bit signed integer hash code. - - - - Cancels the work item by disposing the resource returned by InvokeCore as soon as possible. - - - - - Gets whether the work item has received a cancellation request. - - - - - Represents a scheduled work item based on the materialization of an IScheduler.Schedule method call. - - Absolute time representation type. - Type of the state passed to the scheduled action. - - - - Creates a materialized work item. - - Recursive scheduler to invoke the scheduled action with. - State to pass to the scheduled action. - Scheduled action. - Time at which to run the scheduled action. - Comparer used to compare work items based on their scheduled time. - or or is null. - - - - Creates a materialized work item. - - Recursive scheduler to invoke the scheduled action with. - State to pass to the scheduled action. - Scheduled action. - Time at which to run the scheduled action. - or is null. - - - - Invokes the scheduled action with the supplied recursive scheduler and state. - - Cancellation resource returned by the scheduled action. - - - - Provides a set of static properties to access commonly used schedulers. - - - - - Yields execution of the current work item on the scheduler to another work item on the scheduler. - The caller should await the result of calling Yield to schedule the remainder of the current work item (known as the continuation). - - Scheduler to yield work on. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Yields execution of the current work item on the scheduler to another work item on the scheduler. - The caller should await the result of calling Yield to schedule the remainder of the current work item (known as the continuation). - - Scheduler to yield work on. - Cancellation token to cancel the continuation to run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Suspends execution of the current work item on the scheduler for the specified duration. - The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) after the specified duration. - - Scheduler to yield work on. - Time when the continuation should run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Suspends execution of the current work item on the scheduler for the specified duration. - The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) after the specified duration. - - Scheduler to yield work on. - Time when the continuation should run. - Cancellation token to cancel the continuation to run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Suspends execution of the current work item on the scheduler until the specified due time. - The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) at the specified due time. - - Scheduler to yield work on. - Time when the continuation should run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Suspends execution of the current work item on the scheduler until the specified due time. - The caller should await the result of calling Sleep to schedule the remainder of the current work item (known as the continuation) at the specified due time. - - Scheduler to yield work on. - Time when the continuation should run. - Cancellation token to cancel the continuation to run. - Scheduler operation object to await in order to schedule the continuation. - is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Relative time after which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Relative time after which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Relative time after which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Relative time after which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Absolute time at which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - The type of the state passed to the scheduled action. - Scheduler to schedule work on. - State to pass to the asynchronous method. - Absolute time at which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Absolute time at which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Schedules work using an asynchronous method, allowing for cooperative scheduling in an imperative coding style. - - Scheduler to schedule work on. - Absolute time at which to execute the action. - Asynchronous method to run the work, using Yield and Sleep operations for cooperative scheduling and injection of cancellation points. - Disposable object that allows to cancel outstanding work on cooperative cancellation points or through the cancellation token passed to the asynchronous method. - or is null. - - - - Gets the current time according to the local machine's system clock. - - - - - Normalizes the specified TimeSpan value to a positive value. - - The TimeSpan value to normalize. - The specified TimeSpan value if it is zero or positive; otherwise, TimeSpan.Zero. - - - - Gets a scheduler that schedules work immediately on the current thread. - - - - - Gets a scheduler that schedules work as soon as possible on the current thread. - - - - - Gets a scheduler that schedules work on the platform's default scheduler. - - - - - Gets a scheduler that schedules work on the thread pool. - - - - - Gets a scheduler that schedules work on a new thread using default thread creation options. - - - - - Gets a scheduler that schedules work on Task Parallel Library (TPL) task pool using the default TaskScheduler. - - - - - Schedules an action to be executed recursively. - - Scheduler to execute the recursive action on. - Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively. - - The type of the state passed to the scheduled action. - Scheduler to execute the recursive action on. - State passed to the action to be executed. - Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively after a specified relative due time. - - Scheduler to execute the recursive action on. - Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified relative time. - Relative time after which to execute the action for the first time. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively after a specified relative due time. - - The type of the state passed to the scheduled action. - Scheduler to execute the recursive action on. - State passed to the action to be executed. - Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. - Relative time after which to execute the action for the first time. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively at a specified absolute due time. - - Scheduler to execute the recursive action on. - Action to execute recursively. The parameter passed to the action is used to trigger recursive scheduling of the action at the specified absolute time. - Absolute time at which to execute the action for the first time. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed recursively at a specified absolute due time. - - The type of the state passed to the scheduled action. - Scheduler to execute the recursive action on. - State passed to the action to be executed. - Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. - Absolute time at which to execute the action for the first time. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Returns the ISchedulerLongRunning implementation of the specified scheduler, or null if no such implementation is available. - - Scheduler to get the ISchedulerLongRunning implementation for. - The scheduler's ISchedulerLongRunning implementation if available; null otherwise. - - This helper method is made available for query operator authors in order to discover scheduler services by using the required - IServiceProvider pattern, which allows for interception or redefinition of scheduler services. - - - - - Returns the IStopwatchProvider implementation of the specified scheduler, or null if no such implementation is available. - - Scheduler to get the IStopwatchProvider implementation for. - The scheduler's IStopwatchProvider implementation if available; null otherwise. - - - This helper method is made available for query operator authors in order to discover scheduler services by using the required - IServiceProvider pattern, which allows for interception or redefinition of scheduler services. - - - Consider using in case a stopwatch is required, but use of emulation stopwatch based - on the scheduler's clock is acceptable. Use of this method is recommended for best-effort use of the stopwatch provider - scheduler service, where the caller falls back to not using stopwatches if this facility wasn't found. - - - - - - Returns the IStopwatchProvider implementation of the specified scheduler, or null if no such implementation is available. - - Scheduler to get the IStopwatchProvider implementation for. - The scheduler's IStopwatchProvider implementation if available; null otherwise. - - - This helper method is made available for query operator authors in order to discover scheduler services by using the required - IServiceProvider pattern, which allows for interception or redefinition of scheduler services. - - - Consider using the Scheduler.SchedulePeriodic extension methods for IScheduler in case periodic scheduling is required and - emulation of periodic behavior using other scheduler services is desirable. Use of this method is recommended for best-effort - use of the periodic scheduling service, where the caller falls back to not using periodic scheduling if this facility wasn't - found. - - - - - - Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. - If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation. - If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage. - Otherwise, the periodic task will be emulated using recursive scheduling. - - The type of the state passed to the scheduled action. - The scheduler to run periodic work on. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - or is null. - is less than TimeSpan.Zero. - - - - Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. - If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation. - If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage. - Otherwise, the periodic task will be emulated using recursive scheduling. - - The type of the state passed to the scheduled action. - Scheduler to execute the action on. - State passed to the action to be executed. - Period for running the work periodically. - Action to be executed. - The disposable object used to cancel the scheduled recurring action (best effort). - or is null. - is less than TimeSpan.Zero. - - - - Schedules a periodic piece of work by dynamically discovering the scheduler's capabilities. - If the scheduler supports periodic scheduling, the request will be forwarded to the periodic scheduling implementation. - If the scheduler provides stopwatch functionality, the periodic task will be emulated using recursive scheduling with a stopwatch to correct for time slippage. - Otherwise, the periodic task will be emulated using recursive scheduling. - - Scheduler to execute the action on. - Period for running the work periodically. - Action to be executed. - The disposable object used to cancel the scheduled recurring action (best effort). - or is null. - is less than TimeSpan.Zero. - - - - Starts a new stopwatch object by dynamically discovering the scheduler's capabilities. - If the scheduler provides stopwatch functionality, the request will be forwarded to the stopwatch provider implementation. - Otherwise, the stopwatch will be emulated using the scheduler's notion of absolute time. - - Scheduler to obtain a stopwatch for. - New stopwatch object; started at the time of the request. - is null. - The resulting stopwatch object can have non-monotonic behavior. - - - - Schedules an action to be executed. - - Scheduler to execute the action on. - Action to execute. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed after the specified relative due time. - - Scheduler to execute the action on. - Action to execute. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed at the specified absolute due time. - - Scheduler to execute the action on. - Action to execute. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed. - - Scheduler to execute the action on. - Action to execute. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Returns a scheduler that represents the original scheduler, without any of its interface-based optimizations (e.g. long running scheduling). - - Scheduler to disable all optimizations for. - Proxy to the original scheduler but without any optimizations enabled. - is null. - - - - Returns a scheduler that represents the original scheduler, without the specified set of interface-based optimizations (e.g. long running scheduling). - - Scheduler to disable the specified optimizations for. - Types of the optimization interfaces that have to be disabled. - Proxy to the original scheduler but without the specified optimizations enabled. - or is null. - - - - Returns a scheduler that wraps the original scheduler, adding exception handling for scheduled actions. - - Type of the exception to check for. - Scheduler to apply an exception filter for. - Handler that's run if an exception is caught. The exception will be rethrown if the handler returns false. - Wrapper around the original scheduler, enforcing exception handling. - or is null. - - - - Represents an awaitable scheduler operation. Awaiting the object causes the continuation to be posted back to the originating scheduler's work queue. - - - - - Controls whether the continuation is run on the originating synchronization context (false by default). - - true to run the continuation on the captured synchronization context; false otherwise (default). - Scheduler operation object with configured await behavior. - - - - Gets an awaiter for the scheduler operation, used to post back the continuation. - - Awaiter for the scheduler operation. - - - - (Infrastructure) Scheduler operation awaiter type used by the code generated for C# await and Visual Basic Await expressions. - - - - - Indicates whether the scheduler operation has completed. Returns false unless cancellation was already requested. - - - - - Completes the scheduler operation, throwing an OperationCanceledException in case cancellation was requested. - - - - - Registers the continuation with the scheduler operation. - - Continuation to be run on the originating scheduler. - - - - Efficient scheduler queue that maintains scheduled items sorted by absolute time. - - Absolute time representation type. - This type is not thread safe; users should ensure proper synchronization. - - - - Creates a new scheduler queue with a default initial capacity. - - - - - Creats a new scheduler queue with the specified initial capacity. - - Initial capacity of the scheduler queue. - is less than zero. - - - - Gets the number of scheduled items in the scheduler queue. - - - - - Enqueues the specified work item to be scheduled. - - Work item to be scheduled. - - - - Removes the specified work item from the scheduler queue. - - Work item to be removed from the scheduler queue. - true if the item was found; false otherwise. - - - - Dequeues the next work item from the scheduler queue. - - Next work item in the scheduler queue (removed). - - - - Peeks the next work item in the scheduler queue. - - Next work item in the scheduler queue (not removed). - - - - Provides basic synchronization and scheduling services for observable sequences. - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. - - The type of the elements in the source sequence. - Source sequence. - Scheduler to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified scheduler. - In order to invoke observer callbacks on the specified scheduler, e.g. to offload callback processing to a dedicated thread, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified synchronization context. - - The type of the elements in the source sequence. - Source sequence. - Synchronization context to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context. - or is null. - - Only the side-effects of subscribing to the source sequence and disposing subscriptions to the source sequence are run on the specified synchronization context. - In order to invoke observer callbacks on the specified synchronization context, e.g. to post callbacks to a UI thread represented by the synchronization context, use . - - - - - Wraps the source sequence in order to run its observer callbacks on the specified scheduler. - - The type of the elements in the source sequence. - Source sequence. - Scheduler to notify observers on. - The source sequence whose observations happen on the specified scheduler. - or is null. - - - - Wraps the source sequence in order to run its observer callbacks on the specified synchronization context. - - The type of the elements in the source sequence. - Source sequence. - Synchronization context to notify observers on. - The source sequence whose observations happen on the specified synchronization context. - or is null. - - - - Wraps the source sequence in order to ensure observer callbacks are properly serialized. - - The type of the elements in the source sequence. - Source sequence. - The source sequence whose outgoing calls to observers are synchronized. - is null. - - - - Wraps the source sequence in order to ensure observer callbacks are synchronized using the specified gate object. - - The type of the elements in the source sequence. - Source sequence. - Gate object to synchronize each observer call on. - The source sequence whose outgoing calls to observers are synchronized on the given gate object. - or is null. - - - - Represents an object that schedules units of work on a provided . - - - - - Creates an object that schedules units of work on the provided . - - Synchronization context to schedule units of work on. - is null. - - - - Creates an object that schedules units of work on the provided . - - Synchronization context to schedule units of work on. - Configures whether scheduling always posts to the synchronization context, regardless whether the caller is on the same synchronization context. - is null. - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Represents an Action-based disposable. - - - - - Constructs a new disposable with the given action used for disposal. - - Disposal action which will be run upon calling Dispose. - - - - Gets a value that indicates whether the object is disposed. - - - - - Calls the disposal action if and only if the current instance hasn't been disposed yet. - - - - - Represents a disposable resource that can be checked for disposal status. - - - - - Initializes a new instance of the class. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Sets the status to disposed, which can be observer through the property. - - - - - Represents a disposable resource that has an associated that will be set to the cancellation requested state upon disposal. - - - - - Initializes a new instance of the class that uses an existing . - - used for cancellation. - is null. - - - - Initializes a new instance of the class that uses a new . - - - - - Gets the used by this CancellationDisposable. - - - - - Cancels the underlying . - - - - - Gets a value that indicates whether the object is disposed. - - - - - Represents a group of disposable resources that are disposed together. - - - - - Initializes a new instance of the class with no disposables contained by it initially. - - - - - Initializes a new instance of the class with the specified number of disposables. - - The number of disposables that the new CompositeDisposable can initially store. - is less than zero. - - - - Initializes a new instance of the class from a group of disposables. - - Disposables that will be disposed together. - is null. - Any of the disposables in the collection is null. - - - - Initializes a new instance of the class from a group of disposables. - - Disposables that will be disposed together. - is null. - Any of the disposables in the collection is null. - - - - Gets the number of disposables contained in the CompositeDisposable. - - - - - Adds a disposable to the CompositeDisposable or disposes the disposable if the CompositeDisposable is disposed. - - Disposable to add. - is null. - - - - Removes and disposes the first occurrence of a disposable from the CompositeDisposable. - - Disposable to remove. - true if found; false otherwise. - is null. - - - - Disposes all disposables in the group and removes them from the group. - - - - - Removes and disposes all disposables from the CompositeDisposable, but does not dispose the CompositeDisposable. - - - - - Determines whether the CompositeDisposable contains a specific disposable. - - Disposable to search for. - true if the disposable was found; otherwise, false. - is null. - - - - Copies the disposables contained in the CompositeDisposable to an array, starting at a particular array index. - - Array to copy the contained disposables to. - Target index at which to copy the first disposable of the group. - is null. - is less than zero. -or - is larger than or equal to the array length. - - - - Always returns false. - - - - - Returns an enumerator that iterates through the CompositeDisposable. - - An enumerator to iterate over the disposables. - - - - Returns an enumerator that iterates through the CompositeDisposable. - - An enumerator to iterate over the disposables. - - - - Gets a value that indicates whether the object is disposed. - - - - - Represents a disposable resource whose disposal invocation will be posted to the specified . - - - - - Initializes a new instance of the class that uses the specified on which to dispose the specified disposable resource. - - Context to perform disposal on. - Disposable whose Dispose operation to run on the given synchronization context. - or is null. - - - - Gets the provided . - - - - - Gets a value that indicates whether the object is disposed. - - - - - Disposes the underlying disposable on the provided . - - - - - Represents a disposable that does nothing on disposal. - - - - - Singleton default disposable. - - - - - Does nothing. - - - - - Provides a set of static methods for creating Disposables. - - - - - Gets the disposable that does nothing when disposed. - - - - - Creates a disposable object that invokes the specified action when disposed. - - Action to run during the first call to . The action is guaranteed to be run at most once. - The disposable object that runs the given action upon disposal. - is null. - - - - Represents a disposable resource whose underlying disposable resource can be swapped for another disposable resource. - - - - - Initializes a new instance of the class with no current underlying disposable. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Gets or sets the underlying disposable. After disposal, the result of getting this property is undefined. - - If the MutableDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object. - - - - Disposes the underlying disposable as well as all future replacements. - - - - - Represents a disposable resource that only disposes its underlying disposable resource when all dependent disposable objects have been disposed. - - - - - Initializes a new instance of the class with the specified disposable. - - Underlying disposable. - is null. - - - - Gets a value that indicates whether the object is disposed. - - - - - Returns a dependent disposable that when disposed decreases the refcount on the underlying disposable. - - A dependent disposable contributing to the reference count that manages the underlying disposable's lifetime. - - - - Disposes the underlying disposable only when all dependent disposables have been disposed. - - - - - Represents a disposable resource whose disposal invocation will be scheduled on the specified . - - - - - Initializes a new instance of the class that uses an on which to dispose the disposable. - - Scheduler where the disposable resource will be disposed on. - Disposable resource to dispose on the given scheduler. - or is null. - - - - Gets the scheduler where the disposable resource will be disposed on. - - - - - Gets the underlying disposable. After disposal, the result is undefined. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Disposes the wrapped disposable on the provided scheduler. - - - - - Represents a disposable resource whose underlying disposable resource can be replaced by another disposable resource, causing automatic disposal of the previous underlying disposable resource. - - - - - Initializes a new instance of the class. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Gets or sets the underlying disposable. - - If the SerialDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object. Assigning this property disposes the previous disposable object. - - - - Disposes the underlying disposable as well as all future replacements. - - - - - Represents a disposable resource which only allows a single assignment of its underlying disposable resource. - If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an . - - - - - Initializes a new instance of the class. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Gets or sets the underlying disposable. After disposal, the result of getting this property is undefined. - - Thrown if the SingleAssignmentDisposable has already been assigned to. - - - - Disposes the underlying disposable. - - - - - Represents a group of disposable resources that are disposed together. - - - - - Creates a new group containing two disposable resources that are disposed together. - - The first disposable resoruce to add to the group. - The second disposable resoruce to add to the group. - Group of disposable resources that are disposed together. - - - - Creates a new group of disposable resources that are disposed together. - - Disposable resources to add to the group. - Group of disposable resources that are disposed together. - - - - Creates a new group of disposable resources that are disposed together. - - Disposable resources to add to the group. - Group of disposable resources that are disposed together. - - - - Disposes all disposables in the group. - - - - - Gets a value that indicates whether the object is disposed. - - - - - Interface with variance annotation; allows for better type checking when detecting capabilities in SubscribeSafe. - - Type of the resulting sequence's elements. - - - - Base class for implementation of query operators, providing performance benefits over the use of Observable.Create. - - Type of the resulting sequence's elements. - - - - Publicly visible Subscribe method. - - Observer to send notifications on. The implementation of a producer must ensure the correct message grammar on the observer. - IDisposable to cancel the subscription. This causes the underlying sink to be notified of unsubscription, causing it to prevent further messages from being sent to the observer. - - - - Core implementation of the query operator, called upon a new subscription to the producer object. - - Observer to send notifications on. The implementation of a producer must ensure the correct message grammar on the observer. - The subscription disposable object returned from the Run call, passed in such that it can be forwarded to the sink, allowing it to dispose the subscription upon sending a final message (or prematurely for other reasons). - Callback to communicate the sink object to the subscriber, allowing consumers to tunnel a Dispose call into the sink, which can stop the processing. - Disposable representing all the resources and/or subscriptions the operator uses to process events. - The observer passed in to this method is not protected using auto-detach behavior upon an OnError or OnCompleted call. The implementation must ensure proper resource disposal and enforce the message grammar. - - - - Base class for implementation of query operators, providing a lightweight sink that can be disposed to mute the outgoing observer. - - Type of the resulting sequence's elements. - Implementations of sinks are responsible to enforce the message grammar on the associated observer. Upon sending a terminal message, a pairing Dispose call should be made to trigger cancellation of related resources and to mute the outgoing observer. - - - - Provides a set of static methods for subscribing delegates to observables. - - - - - Subscribes to the observable sequence without specifying any handlers. - This method can be used to evaluate the observable sequence for its side-effects only. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - IDisposable object used to unsubscribe from the observable sequence. - is null. - - - - Subscribes an element handler to an observable sequence. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - IDisposable object used to unsubscribe from the observable sequence. - or is null. - - - - Subscribes an element handler and an exception handler to an observable sequence. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - IDisposable object used to unsubscribe from the observable sequence. - or or is null. - - - - Subscribes an element handler and a completion handler to an observable sequence. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - IDisposable object used to unsubscribe from the observable sequence. - or or is null. - - - - Subscribes an element handler, an exception handler, and a completion handler to an observable sequence. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - IDisposable object used to unsubscribe from the observable sequence. - or or or is null. - - - - Subscribes an observer to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Observer to subscribe to the sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or is null. - - - - Subscribes to the observable sequence without specifying any handlers, using a CancellationToken to support unsubscription. - This method can be used to evaluate the observable sequence for its side-effects only. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - CancellationToken that can be signaled to unsubscribe from the source sequence. - is null. - - - - Subscribes an element handler to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or is null. - - - - Subscribes an element handler and an exception handler to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or or is null. - - - - Subscribes an element handler and a completion handler to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or or is null. - - - - Subscribes an element handler, an exception handler, and a completion handler to an observable sequence, using a CancellationToken to support unsubscription. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - CancellationToken that can be signaled to unsubscribe from the source sequence. - or or or is null. - - - - Subscribes to the specified source, re-routing synchronous exceptions during invocation of the Subscribe method to the observer's OnError channel. - This method is typically used when writing query operators. - - The type of the elements in the source sequence. - Observable sequence to subscribe to. - Observer that will be passed to the observable sequence, and that will be used for exception propagation. - IDisposable object used to unsubscribe from the observable sequence. - or is null. - - - diff --git a/References/netstandard1.0/System.Reactive.Interfaces.dll b/References/netstandard1.0/System.Reactive.Interfaces.dll deleted file mode 100644 index 883e4f1..0000000 Binary files a/References/netstandard1.0/System.Reactive.Interfaces.dll and /dev/null differ diff --git a/References/netstandard1.0/System.Reactive.Interfaces.xml b/References/netstandard1.0/System.Reactive.Interfaces.xml deleted file mode 100644 index 1204bd4..0000000 --- a/References/netstandard1.0/System.Reactive.Interfaces.xml +++ /dev/null @@ -1,336 +0,0 @@ - - - - System.Reactive.Interfaces - - - - - The System.Reactive namespace contains interfaces and classes used throughout the Reactive Extensions library. - - - - - The System.Reactive.Concurrency namespace contains interfaces and classes that provide the scheduler infrastructure used by Reactive Extensions to construct and - process event streams. Schedulers are used to parameterize the concurrency introduced by query operators, provide means to virtualize time, to process historical data, - and to write unit tests for functionality built using Reactive Extensions constructs. - - - - - Represents a work item that has been scheduled. - - Absolute time representation type. - - - - Gets the absolute time at which the item is due for invocation. - - - - - Invokes the work item. - - - - - Represents an object that schedules units of work. - - - - - Gets the scheduler's notion of current time. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - - - - Scheduler with support for starting long-running tasks. - This type of scheduler can be used to run loops more efficiently instead of using recursive scheduling. - - - - - Schedules a long-running piece of work. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - Notes to implementers - The returned disposable object should not prevent the work from starting, but only set the cancellation flag passed to the specified action. - - - - - Scheduler with support for running periodic tasks. - This type of scheduler can be used to run timers more efficiently instead of using recursive scheduling. - - - - - Schedules a periodic piece of work. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - - - - Abstraction for a stopwatch to compute time relative to a starting point. - - - - - Gets the time elapsed since the stopwatch object was obtained. - - - - - Provider for IStopwatch objects. - - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - The System.Reactive.Disposables namespace contains interfaces and classes that provide a compositional set of constructs used to deal with resource and subscription - management in Reactive Extensions. Those types are used extensively within the implementation of Reactive Extensions and are useful when writing custom query operators or - schedulers. - - - - - Disposable resource with disposal state tracking. - - - - - Gets a value that indicates whether the object is disposed. - - - - - The System.Reactive.Linq namespace contains interfaces and classes that support expressing queries over observable sequences, using Language Integrated Query (LINQ). - Query operators are made available as extension methods for IObservable<T> and IQbservable<T> defined on the Observable and Qbservable classes, respectively. - - - - - Represents an observable sequence of elements that have a common key. - - - The type of the key shared by all elements in the group. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the elements in the group. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Gets the common key. - - - - - Provides functionality to evaluate queries against a specific data source wherein the type of the data is known. - - - The type of the data in the data source. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Provides functionality to evaluate queries against a specific data source wherein the type of the data is not specified. - - - - - Gets the type of the element(s) that are returned when the expression tree associated with this instance of IQbservable is executed. - - - - - Gets the expression tree that is associated with the instance of IQbservable. - - - - - Gets the query provider that is associated with this data source. - - - - - Defines methods to create and execute queries that are described by an IQbservable object. - - - - - Constructs an IQbservable>TResult< object that can evaluate the query represented by a specified expression tree. - - The type of the elements of the System.Reactive.Linq.IQbservable<T> that is returned. - Expression tree representing the query. - IQbservable object that can evaluate the given query expression. - - - - The System.Reactive.Subjects namespace contains interfaces and classes to represent subjects, which are objects implementing both IObservable<T> and IObserver<T>. - Subjects are often used as sources of events, allowing one party to raise events and allowing another party to write queries over the event stream. Because of their ability to - have multiple registered observers, subjects are also used as a facility to provide multicast behavior for event streams in queries. - - - - - Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence. - - - The type of the elements in the sequence. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established. - - Disposable used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence. - - - - Represents an object that is both an observable sequence as well as an observer. - - The type of the elements processed by the subject. - - - - Represents an object that is both an observable sequence as well as an observer. - - - The type of the elements received by the subject. - This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the elements produced by the subject. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event. - - - The type of the sender that raised the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the event data generated by the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Gets the sender object that raised the event. - - - - - Gets the event data that was generated by the event. - - - - - Represents a data stream signaling its elements by means of an event. - - The type of the event data generated by the event. - - - - Event signaling the next element in the data stream. - - - - - Represents a data stream signaling its elements by means of an event. - - - The type of the event data generated by the event. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Event signaling the next element in the data stream. - - - - - Provides a mechanism for receiving push-based notifications and returning a response. - - - The type of the elements received by the observer. - This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - The type of the result returned from the observer's notification handlers. - This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. - - - - - Notifies the observer of a new element in the sequence. - - The new element in the sequence. - Result returned upon observation of a new element. - - - - Notifies the observer that an exception has occurred. - - The exception that occurred. - Result returned upon observation of an error. - - - - Notifies the observer of the end of the sequence. - - Result returned upon observation of the sequence completion. - - - diff --git a/References/netstandard1.0/System.Reactive.Linq.dll b/References/netstandard1.0/System.Reactive.Linq.dll deleted file mode 100644 index 9457eef..0000000 Binary files a/References/netstandard1.0/System.Reactive.Linq.dll and /dev/null differ diff --git a/References/netstandard1.0/System.Reactive.Linq.xml b/References/netstandard1.0/System.Reactive.Linq.xml deleted file mode 100644 index ecb4290..0000000 --- a/References/netstandard1.0/System.Reactive.Linq.xml +++ /dev/null @@ -1,11153 +0,0 @@ - - - - System.Reactive.Linq - - - - - The System.Reactive.Joins namespace contains classes used to express join patterns over observable sequences using fluent method syntax. - - - - - Abstract base class for join patterns. - - - - - Represents a join pattern over one observable sequence. - - The type of the elements in the first source sequence. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over two observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - - - - Creates a pattern that matches when all three observable sequences have an available element. - - The type of the elements in the third observable sequence. - Observable sequence to match with the two previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over three observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - - - - Creates a pattern that matches when all four observable sequences have an available element. - - The type of the elements in the fourth observable sequence. - Observable sequence to match with the three previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over four observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - - - - Creates a pattern that matches when all five observable sequences have an available element. - - The type of the elements in the fifth observable sequence. - Observable sequence to match with the four previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over five observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - - - - Creates a pattern that matches when all six observable sequences have an available element. - - The type of the elements in the sixth observable sequence. - Observable sequence to match with the five previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over six observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - - - - Creates a pattern that matches when all seven observable sequences have an available element. - - The type of the elements in the seventh observable sequence. - Observable sequence to match with the six previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over seven observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - - - - Creates a pattern that matches when all eight observable sequences have an available element. - - The type of the elements in the eighth observable sequence. - Observable sequence to match with the seven previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over eight observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - - - - Creates a pattern that matches when all nine observable sequences have an available element. - - The type of the elements in the ninth observable sequence. - Observable sequence to match with the eight previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over nine observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - - - - Creates a pattern that matches when all ten observable sequences have an available element. - - The type of the elements in the tenth observable sequence. - Observable sequence to match with the nine previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over ten observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - - - - Creates a pattern that matches when all eleven observable sequences have an available element. - - The type of the elements in the eleventh observable sequence. - Observable sequence to match with the ten previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over eleven observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - - - - Creates a pattern that matches when all twelve observable sequences have an available element. - - The type of the elements in the twelfth observable sequence. - Observable sequence to match with the eleven previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over twelve observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - - - - Creates a pattern that matches when all thirteen observable sequences have an available element. - - The type of the elements in the thirteenth observable sequence. - Observable sequence to match with the twelve previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over thirteen observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - - - - Creates a pattern that matches when all fourteen observable sequences have an available element. - - The type of the elements in the fourteenth observable sequence. - Observable sequence to match with the thirteen previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over fourteen observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - - - - Creates a pattern that matches when all fifteen observable sequences have an available element. - - The type of the elements in the fifteenth observable sequence. - Observable sequence to match with the fourteen previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over fifteen observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - - - - Creates a pattern that matches when all sixteen observable sequences have an available element. - - The type of the elements in the sixteenth observable sequence. - Observable sequence to match with the fifteen previous sequences. - Pattern object that matches when all observable sequences have an available element. - is null. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents a join pattern over sixteen observable sequences. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the sixteenth source sequence. - - - - Matches when all observable sequences have an available element and projects the elements by invoking the selector function. - - The type of the elements in the result sequence, returned by the selector function. - Selector that will be invoked for elements in the source sequences. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - is null. - - - - Represents an execution plan for join patterns. - - The type of the results produced by the plan. - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - Looks up a localized string similar to Could not find event '{0}' on object of type '{1}'.. - - - - - Looks up a localized string similar to Could not find event '{0}' on type '{1}'.. - - - - - Looks up a localized string similar to Add method should take 1 parameter.. - - - - - Looks up a localized string similar to The second parameter of the event delegate must be assignable to '{0}'.. - - - - - Looks up a localized string similar to Event is missing the add method.. - - - - - Looks up a localized string similar to Event is missing the remove method.. - - - - - Looks up a localized string similar to The event delegate must have a void return type.. - - - - - Looks up a localized string similar to The event delegate must have exactly two parameters.. - - - - - Looks up a localized string similar to Remove method should take 1 parameter.. - - - - - Looks up a localized string similar to The first parameter of the event delegate must be assignable to '{0}'.. - - - - - Looks up a localized string similar to Remove method of a WinRT event should take an EventRegistrationToken.. - - - - - Looks up a localized string similar to Sequence contains more than one element.. - - - - - Looks up a localized string similar to Sequence contains more than one matching element.. - - - - - Looks up a localized string similar to Sequence contains no elements.. - - - - - Looks up a localized string similar to Sequence contains no matching element.. - - - - - Looks up a localized string similar to {0} cannot be called when the scheduler is already running. Try using Sleep instead.. - - - - - Represents a .NET event invocation consisting of the weakly typed object that raised the event and the data that was generated by the event. - - The type of the event data generated by the event. - - - - Creates a new data representation instance of a .NET event invocation with the given sender and event data. - - The sender object that raised the event. - The event data that was generated by the event. - - - - Represents a .NET event invocation consisting of the strongly typed object that raised the event and the data that was generated by the event. - - The type of the sender that raised the event. - The type of the event data generated by the event. - - - - Creates a new data representation instance of a .NET event invocation with the given sender and event data. - - The sender object that raised the event. - The event data that was generated by the event. - - - - Gets the sender object that raised the event. - - - - - Gets the event data that was generated by the event. - - - - - Determines whether the current EventPattern<TSender, TEventArgs> object represents the same event as a specified EventPattern<TSender, TEventArgs> object. - - An object to compare to the current EventPattern<TSender, TEventArgs> object. - true if both EventPattern<TSender, TEventArgs> objects represent the same event; otherwise, false. - - - - Determines whether the specified System.Object is equal to the current EventPattern<TSender, TEventArgs>. - - The System.Object to compare with the current EventPattern<TSender, TEventArgs>. - true if the specified System.Object is equal to the current EventPattern<TSender, TEventArgs>; otherwise, false. - - - - Returns the hash code for the current EventPattern<TSender, TEventArgs> instance. - - A hash code for the current EventPattern<TSender, TEventArgs> instance. - - - - Determines whether two specified EventPattern<TSender, TEventArgs> objects represent the same event. - - The first EventPattern<TSender, TEventArgs> to compare, or null. - The second EventPattern<TSender, TEventArgs> to compare, or null. - true if both EventPattern<TSender, TEventArgs> objects represent the same event; otherwise, false. - - - - Determines whether two specified EventPattern<TSender, TEventArgs> objects represent a different event. - - The first EventPattern<TSender, TEventArgs> to compare, or null. - The second EventPattern<TSender, TEventArgs> to compare, or null. - true if both EventPattern<TSender, TEventArgs> objects don't represent the same event; otherwise, false. - - - - Base class for classes that expose an observable sequence as a well-known event pattern (sender, event arguments). - Contains functionality to maintain a map of event handler delegates to observable sequence subscriptions. Subclasses - should only add an event with custom add and remove methods calling into the base class's operations. - - The type of the sender that raises the event. - The type of the event data generated by the event. - - - - Creates a new event pattern source. - - Source sequence to expose as an event. - Delegate used to invoke the event for each element of the sequence. - or is null. - - - - Adds the specified event handler, causing a subscription to the underlying source. - - Event handler to add. The same delegate should be passed to the Remove operation in order to remove the event handler. - Invocation delegate to raise the event in the derived class. - or is null. - - - - Removes the specified event handler, causing a disposal of the corresponding subscription to the underlying source that was created during the Add operation. - - Event handler to remove. This should be the same delegate as one that was passed to the Add operation. - is null. - - - - Represents a value associated with time interval information. - The time interval can represent the time it took to produce the value, the interval relative to a previous value, the value's delivery time relative to a base, etc. - - The type of the value being annotated with time interval information. - - - - Constructs a time interval value. - - The value to be annotated with a time interval. - Time interval associated with the value. - - - - Gets the value. - - - - - Gets the interval. - - - - - Determines whether the current TimeInterval<T> value has the same Value and Interval as a specified TimeInterval<T> value. - - An object to compare to the current TimeInterval<T> value. - true if both TimeInterval<T> values have the same Value and Interval; otherwise, false. - - - - Determines whether the two specified TimeInterval<T> values have the same Value and Interval. - - The first TimeInterval<T> value to compare. - The second TimeInterval<T> value to compare. - true if the first TimeInterval<T> value has the same Value and Interval as the second TimeInterval<T> value; otherwise, false. - - - - Determines whether the two specified TimeInterval<T> values don't have the same Value and Interval. - - The first TimeInterval<T> value to compare. - The second TimeInterval<T> value to compare. - true if the first TimeInterval<T> value has a different Value or Interval as the second TimeInterval<T> value; otherwise, false. - - - - Determines whether the specified System.Object is equal to the current TimeInterval<T>. - - The System.Object to compare with the current TimeInterval<T>. - true if the specified System.Object is equal to the current TimeInterval<T>; otherwise, false. - - - - Returns the hash code for the current TimeInterval<T> value. - - A hash code for the current TimeInterval<T> value. - - - - Returns a string representation of the current TimeInterval<T> value. - - String representation of the current TimeInterval<T> value. - - - - Represents value with a timestamp on it. - The timestamp typically represents the time the value was received, using an IScheduler's clock to obtain the current time. - - The type of the value being timestamped. - - - - Constructs a timestamped value. - - The value to be annotated with a timestamp. - Timestamp associated with the value. - - - - Gets the value. - - - - - Gets the timestamp. - - - - - Determines whether the current Timestamped<T> value has the same Value and Timestamp as a specified Timestamped<T> value. - - An object to compare to the current Timestamped<T> value. - true if both Timestamped<T> values have the same Value and Timestamp; otherwise, false. - - - - Determines whether the two specified Timestamped<T> values have the same Value and Timestamp. - - The first Timestamped<T> value to compare. - The second Timestamped<T> value to compare. - true if the first Timestamped<T> value has the same Value and Timestamp as the second Timestamped<T> value; otherwise, false. - - - - Determines whether the two specified Timestamped<T> values don't have the same Value and Timestamp. - - The first Timestamped<T> value to compare. - The second Timestamped<T> value to compare. - true if the first Timestamped<T> value has a different Value or Timestamp as the second Timestamped<T> value; otherwise, false. - - - - Determines whether the specified System.Object is equal to the current Timestamped<T>. - - The System.Object to compare with the current Timestamped<T>. - true if the specified System.Object is equal to the current Timestamped<T>; otherwise, false. - - - - Returns the hash code for the current Timestamped<T> value. - - A hash code for the current Timestamped<T> value. - - - - Returns a string representation of the current Timestamped<T> value. - - String representation of the current Timestamped<T> value. - - - - A helper class with a factory method for creating Timestamped<T> instances. - - - - - Creates an instance of a Timestamped<T>. This is syntactic sugar that uses type inference - to avoid specifying a type in a constructor call, which is very useful when using anonymous types. - - The value to be annotated with a timestamp. - Timestamp associated with the value. - Creates a new timestamped value. - - - - Base class for historical schedulers, which are virtual time schedulers that use DateTimeOffset for absolute time and TimeSpan for relative time. - - - - - Creates a new historical scheduler with the minimum value of DateTimeOffset as the initial clock value. - - - - - Creates a new historical scheduler with the specified initial clock value. - - Initial clock value. - - - - Creates a new historical scheduler with the specified initial clock value and absolute time comparer. - - Initial value for the clock. - Comparer to determine causality of events based on absolute time. - - - - Adds a relative time value to an absolute time value. - - Absolute time value. - Relative time value to add. - The resulting absolute time sum value. - - - - Converts the absolute time value to a DateTimeOffset value. - - Absolute time value to convert. - The corresponding DateTimeOffset value. - - - - Converts the TimeSpan value to a relative time value. - - TimeSpan value to convert. - The corresponding relative time value. - - - - Provides a virtual time scheduler that uses DateTimeOffset for absolute time and TimeSpan for relative time. - - - - - Creates a new historical scheduler with the minimum value of DateTimeOffset as the initial clock value. - - - - - Creates a new historical scheduler with the specified initial clock value. - - Initial value for the clock. - - - - Creates a new historical scheduler with the specified initial clock value. - - Initial value for the clock. - Comparer to determine causality of events based on absolute time. - is null. - - - - Gets the next scheduled item to be executed. - - The next scheduled item. - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Base class for virtual time schedulers. - - Absolute time representation type. - Relative time representation type. - - - - Creates a new virtual time scheduler with the default value of TAbsolute as the initial clock value. - - - - - Creates a new virtual time scheduler with the specified initial clock value and absolute time comparer. - - Initial value for the clock. - Comparer to determine causality of events based on absolute time. - is null. - - - - Adds a relative time value to an absolute time value. - - Absolute time value. - Relative time value to add. - The resulting absolute time sum value. - - - - Converts the absolute time value to a DateTimeOffset value. - - Absolute time value to convert. - The corresponding DateTimeOffset value. - - - - Converts the TimeSpan value to a relative time value. - - TimeSpan value to convert. - The corresponding relative time value. - - - - Gets whether the scheduler is enabled to run work. - - - - - Gets the comparer used to compare absolute time values. - - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Absolute time at which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Relative time after which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Relative time after which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Absolute time at which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Starts the virtual time scheduler. - - - - - Stops the virtual time scheduler. - - - - - Advances the scheduler's clock to the specified time, running all work till that point. - - Absolute time to advance the scheduler's clock to. - is in the past. - The scheduler is already running. VirtualTimeScheduler doesn't support running nested work dispatch loops. To simulate time slippage while running work on the scheduler, use . - - - - Advances the scheduler's clock by the specified relative time, running all work scheduled for that timespan. - - Relative time to advance the scheduler's clock by. - is negative. - The scheduler is already running. VirtualTimeScheduler doesn't support running nested work dispatch loops. To simulate time slippage while running work on the scheduler, use . - - - - Advances the scheduler's clock by the specified relative time. - - Relative time to advance the scheduler's clock by. - is negative. - - - - Gets the scheduler's absolute time clock value. - - - - - Gets the scheduler's notion of current time. - - - - - Gets the next scheduled item to be executed. - - The next scheduled item. - - - - Discovers scheduler services by interface type. The base class implementation supports - only the IStopwatchProvider service. To influence service discovery - such as adding - support for other scheduler services - derived types can override this method. - - Scheduler service interface type to discover. - Object implementing the requested service, if available; null otherwise. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Base class for virtual time schedulers using a priority queue for scheduled items. - - Absolute time representation type. - Relative time representation type. - - - - Creates a new virtual time scheduler with the default value of TAbsolute as the initial clock value. - - - - - Creates a new virtual time scheduler. - - Initial value for the clock. - Comparer to determine causality of events based on absolute time. - is null. - - - - Gets the next scheduled item to be executed. - - The next scheduled item. - - - - Schedules an action to be executed at dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Absolute time at which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Provides a set of extension methods for virtual time scheduling. - - - - - Schedules an action to be executed at dueTime. - - Absolute time representation type. - Relative time representation type. - Scheduler to execute the action on. - Relative time after which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Schedules an action to be executed at dueTime. - - Absolute time representation type. - Relative time representation type. - Scheduler to execute the action on. - Absolute time at which to execute the action. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - or is null. - - - - Internal interface describing the LINQ to Events query language. - - - - - Attribute applied to static classes providing expression tree forms of query methods, - mapping those to the corresponding methods for local query execution on the specified - target class type. - - - - - Creates a new mapping to the specified local execution query method implementation type. - - Type with query methods for local execution. - - - - Gets the type with the implementation of local query methods. - - - - - Provides a set of static methods for writing in-memory queries over observable sequences. - - - - - Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value. - For aggregation behavior with incremental intermediate results, see . - - The type of the elements in the source sequence. - The type of the result of the aggregation. - An observable sequence to aggregate over. - The initial accumulator value. - An accumulator function to be invoked on each element. - An observable sequence containing a single element with the final accumulator value. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value, - and the specified result selector function is used to select the result value. - - The type of the elements in the source sequence. - The type of the accumulator value. - The type of the resulting value. - An observable sequence to aggregate over. - The initial accumulator value. - An accumulator function to be invoked on each element. - A function to transform the final accumulator value into the result value. - An observable sequence containing a single element with the final accumulator value. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. - For aggregation behavior with incremental intermediate results, see . - - The type of the elements in the source sequence and the result of the aggregation. - An observable sequence to aggregate over. - An accumulator function to be invoked on each element. - An observable sequence containing a single element with the final accumulator value. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether all elements of an observable sequence satisfy a condition. - - The type of the elements in the source sequence. - An observable sequence whose elements to apply the predicate to. - A function to test each element for a condition. - An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable sequence contains any elements. - - The type of the elements in the source sequence. - An observable sequence to check for non-emptiness. - An observable sequence containing a single element determining whether the source sequence contains any elements. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether any element of an observable sequence satisfies a condition. - - The type of the elements in the source sequence. - An observable sequence whose elements to apply the predicate to. - A function to test each element for a condition. - An observable sequence containing a single element determining whether any elements in the source sequence pass the test in the specified predicate. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values. - - A sequence of values to calculate the average of. - An observable sequence containing a single element with the average of the sequence of values. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - (Asynchronous) The sum of the elements in the source sequence is larger than . - - - - Computes the average of an observable sequence of nullable values. - - A sequence of nullable values to calculate the average of. - 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. - is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - An observable sequence containing a single element with the average of the sequence of values. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the average of an observable sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values to calculate the average of. - A transform function to apply to each element. - 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. - or is null. - (Asynchronous) The source sequence is empty. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable sequence contains a specified element by using the default equality comparer. - - The type of the elements in the source sequence. - An observable sequence in which to locate a value. - The value to locate in the source sequence. - An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer<T>. - - The type of the elements in the source sequence. - An observable sequence in which to locate a value. - The value to locate in the source sequence. - An equality comparer to compare elements. - An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns an observable sequence containing an that represents the total number of elements in an observable sequence. - - The type of the elements in the source sequence. - An observable sequence that contains elements to be counted. - An observable sequence containing a single element with the number of elements in the input sequence. - is null. - (Asynchronous) The number of elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition. - - The type of the elements in the source sequence. - An observable sequence that contains elements to be counted. - A function to test each element for a condition. - An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the element at a specified index in a sequence. - - The type of the elements in the source sequence. - Observable sequence to return the element from. - The zero-based index of the element to retrieve. - An observable sequence that produces the element at the specified position in the source sequence. - is null. - is less than zero. - (Asynchronous) is greater than or equal to the number of elements in the source sequence. - - - - Returns the element at a specified index in a sequence or a default value if the index is out of range. - - The type of the elements in the source sequence. - Observable sequence to return the element from. - The zero-based index of the element to retrieve. - An observable sequence that produces the element at the specified position in the source sequence, or a default value if the index is outside the bounds of the source sequence. - is null. - is less than zero. - - - - Returns the first element of an observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the first element in the observable sequence. - is null. - (Asynchronous) The source sequence is empty. - - - - Returns the first element of an observable sequence that satisfies the condition in the predicate. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the first element in the observable sequence that satisfies the condition in the predicate. - or is null. - (Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - Returns the first element of an observable sequence, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the first element in the observable sequence, or a default value if no such element exists. - is null. - - - - Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - - - - Determines whether an observable sequence is empty. - - The type of the elements in the source sequence. - An observable sequence to check for emptiness. - An observable sequence containing a single element determining whether the source sequence is empty. - is null. - - - - Returns the last element of an observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the last element in the observable sequence. - is null. - (Asynchronous) The source sequence is empty. - - - - Returns the last element of an observable sequence that satisfies the condition in the predicate. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the last element in the observable sequence that satisfies the condition in the predicate. - or is null. - (Asynchronous) No element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - Returns the last element of an observable sequence, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the last element in the observable sequence, or a default value if no such element exists. - is null. - - - - Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - - - - Returns an observable sequence containing an that represents the total number of elements in an observable sequence. - - The type of the elements in the source sequence. - An observable sequence that contains elements to be counted. - An observable sequence containing a single element with the number of elements in the input sequence. - is null. - (Asynchronous) The number of elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns an observable sequence containing an that represents how many elements in the specified observable sequence satisfy a condition. - - The type of the elements in the source sequence. - An observable sequence that contains elements to be counted. - A function to test each element for a condition. - An observable sequence containing a single element with a number that represents how many elements in the input sequence satisfy the condition in the predicate function. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum element in an observable sequence. - - The type of the elements in the source sequence. - An observable sequence to determine the maximum element of. - An observable sequence containing a single element with the maximum element in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence according to the specified comparer. - - The type of the elements in the source sequence. - An observable sequence to determine the maximum element of. - Comparer used to compare elements. - An observable sequence containing a single element with the maximum element in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of values. - - A sequence of values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the maximum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the maximum value of. - An observable sequence containing a single element with the maximum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - The type of the objects derived from the elements in the source sequence to determine the maximum of. - An observable sequence to determine the mimimum element of. - A transform function to apply to each element. - An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value according to the specified comparer. - - The type of the elements in the source sequence. - The type of the objects derived from the elements in the source sequence to determine the maximum of. - An observable sequence to determine the mimimum element of. - A transform function to apply to each element. - Comparer used to compare elements. - An observable sequence containing a single element with the value that corresponds to the maximum element in the source sequence. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the maximum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the maximum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the maximum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the elements in an observable sequence with the maximum key value. - - The type of the elements in the source sequence. - The type of the key computed for each element in the source sequence. - An observable sequence to get the maximum elements for. - Key selector function. - An observable sequence containing a list of zero or more elements that have a maximum key value. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the elements in an observable sequence with the maximum key value according to the specified comparer. - - The type of the elements in the source sequence. - The type of the key computed for each element in the source sequence. - An observable sequence to get the maximum elements for. - Key selector function. - Comparer used to compare key values. - An observable sequence containing a list of zero or more elements that have a maximum key value. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum element in an observable sequence. - - The type of the elements in the source sequence. - An observable sequence to determine the mimimum element of. - An observable sequence containing a single element with the minimum element in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum element in an observable sequence according to the specified comparer. - - The type of the elements in the source sequence. - An observable sequence to determine the mimimum element of. - Comparer used to compare elements. - An observable sequence containing a single element with the minimum element in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of values. - - A sequence of values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the minimum value in an observable sequence of nullable values. - - A sequence of nullable values to determine the minimum value of. - An observable sequence containing a single element with the minimum value in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - The type of the objects derived from the elements in the source sequence to determine the minimum of. - An observable sequence to determine the mimimum element of. - A transform function to apply to each element. - An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value according to the specified comparer. - - The type of the elements in the source sequence. - The type of the objects derived from the elements in the source sequence to determine the minimum of. - An observable sequence to determine the mimimum element of. - A transform function to apply to each element. - Comparer used to compare elements. - An observable sequence containing a single element with the value that corresponds to the minimum element in the source sequence. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Invokes a transform function on each element of a sequence and returns the minimum nullable value. - - The type of the elements in the source sequence. - A sequence of values to determine the minimum value of. - A transform function to apply to each element. - An observable sequence containing a single element with the value of type that corresponds to the minimum value in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the elements in an observable sequence with the minimum key value. - - The type of the elements in the source sequence. - The type of the key computed for each element in the source sequence. - An observable sequence to get the minimum elements for. - Key selector function. - An observable sequence containing a list of zero or more elements that have a minimum key value. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the elements in an observable sequence with the minimum key value according to the specified comparer. - - The type of the elements in the source sequence. - The type of the key computed for each element in the source sequence. - An observable sequence to get the minimum elements for. - Key selector function. - Comparer used to compare key values. - An observable sequence containing a list of zero or more elements that have a minimum key value. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether two sequences are equal by comparing the elements pairwise. - - The type of the elements in the source sequence. - First observable sequence to compare. - Second observable sequence to compare. - An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether two sequences are equal by comparing the elements pairwise using a specified equality comparer. - - The type of the elements in the source sequence. - First observable sequence to compare. - Second observable sequence to compare. - Comparer used to compare elements of both sequences. - An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise. - - The type of the elements in the source sequence. - First observable sequence to compare. - Second observable sequence to compare. - An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the default equality comparer for their type. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Determines whether an observable and enumerable sequence are equal by comparing the elements pairwise using a specified equality comparer. - - The type of the elements in the source sequence. - First observable sequence to compare. - Second observable sequence to compare. - Comparer used to compare elements of both sequences. - An observable sequence that contains a single element which indicates whether both sequences are of equal length and their corresponding elements are equal according to the specified equality comparer. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Returns the only element of an observable sequence, and reports an exception if there is not exactly one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the single element in the observable sequence. - is null. - (Asynchronous) The source sequence contains more than one element. -or- The source sequence is empty. - - - - Returns the only element of an observable sequence that satisfies the condition in the predicate, and reports an exception if there is not exactly one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the single element in the observable sequence that satisfies the condition in the predicate. - or is null. - (Asynchronous) No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - Returns the only element of an observable sequence, or a default value if the observable sequence is empty; this method reports an exception if there is more than one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - Sequence containing the single element in the observable sequence, or a default value if no such element exists. - is null. - (Asynchronous) The source sequence contains more than one element. - - - - Returns the only element of an observable sequence that matches the predicate, or a default value if no such element exists; this method reports an exception if there is more than one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - Sequence containing the single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - (Asynchronous) The sequence contains more than one element that satisfies the condition in the predicate. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values. - - A sequence of values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values. - - A sequence of nullable values to calculate the sum of. - An observable sequence containing a single element with the sum of the values in the source sequence. - is null. - (Asynchronous) The sum of the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Computes the sum of a sequence of nullable values that are obtained by invoking a transform function on each element of the input sequence. - - The type of the elements in the source sequence. - A sequence of values that are used to calculate a sum. - A transform function to apply to each element. - An observable sequence containing a single element with the sum of the values in the source sequence. - or is null. - (Asynchronous) The sum of the projected values for the elements in the source sequence is larger than . - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates an array from an observable sequence. - - The type of the elements in the source sequence. - The source observable sequence to get an array of elements for. - An observable sequence containing a single element with an array containing all the elements of the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a dictionary from an observable sequence according to a specified key selector function. - - The type of the elements in the source sequence. - The type of the dictionary key computed for each element in the source sequence. - An observable sequence to create a dictionary for. - A function to extract a key from each element. - An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a dictionary from an observable sequence according to a specified key selector function, and a comparer. - - The type of the elements in the source sequence. - The type of the dictionary key computed for each element in the source sequence. - An observable sequence to create a dictionary for. - A function to extract a key from each element. - An equality comparer to compare keys. - An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a dictionary from an observable sequence according to a specified key selector function, and an element selector function. - - The type of the elements in the source sequence. - The type of the dictionary key computed for each element in the source sequence. - The type of the dictionary value computed for each element in the source sequence. - An observable sequence to create a dictionary for. - A function to extract a key from each element. - A transform function to produce a result element value from each element. - An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a dictionary from an observable sequence according to a specified key selector function, a comparer, and an element selector function. - - The type of the elements in the source sequence. - The type of the dictionary key computed for each element in the source sequence. - The type of the dictionary value computed for each element in the source sequence. - An observable sequence to create a dictionary for. - A function to extract a key from each element. - A transform function to produce a result element value from each element. - An equality comparer to compare keys. - An observable sequence containing a single element with a dictionary mapping unique key values onto the corresponding source sequence's element. - or or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a list from an observable sequence. - - The type of the elements in the source sequence. - The source observable sequence to get a list of elements for. - An observable sequence containing a single element with a list containing all the elements of the source sequence. - is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a lookup from an observable sequence according to a specified key selector function. - - The type of the elements in the source sequence. - The type of the lookup key computed for each element in the source sequence. - An observable sequence to create a lookup for. - A function to extract a key from each element. - An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements. - or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a lookup from an observable sequence according to a specified key selector function, and a comparer. - - The type of the elements in the source sequence. - The type of the lookup key computed for each element in the source sequence. - An observable sequence to create a lookup for. - A function to extract a key from each element. - An equality comparer to compare keys. - An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a lookup from an observable sequence according to a specified key selector function, and an element selector function. - - The type of the elements in the source sequence. - The type of the lookup key computed for each element in the source sequence. - The type of the lookup value computed for each element in the source sequence. - An observable sequence to create a lookup for. - A function to extract a key from each element. - A transform function to produce a result element value from each element. - An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements. - or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Creates a lookup from an observable sequence according to a specified key selector function, a comparer, and an element selector function. - - The type of the elements in the source sequence. - The type of the lookup key computed for each element in the source sequence. - The type of the lookup value computed for each element in the source sequence. - An observable sequence to create a lookup for. - A function to extract a key from each element. - A transform function to produce a result element value from each element. - An equality comparer to compare keys. - An observable sequence containing a single element with a lookup mapping unique key values onto the corresponding source sequence's elements. - or or or is null. - The return type of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the thirteenth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the thirteenth argument passed to the begin delegate. - The type of the fourteenth argument passed to the begin delegate. - The type of the result returned by the end delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the thirteenth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Converts a Begin/End invoke function pair into an asynchronous function. - - The type of the first argument passed to the begin delegate. - The type of the second argument passed to the begin delegate. - The type of the third argument passed to the begin delegate. - The type of the fourth argument passed to the begin delegate. - The type of the fifth argument passed to the begin delegate. - The type of the sixth argument passed to the begin delegate. - The type of the seventh argument passed to the begin delegate. - The type of the eighth argument passed to the begin delegate. - The type of the ninth argument passed to the begin delegate. - The type of the tenth argument passed to the begin delegate. - The type of the eleventh argument passed to the begin delegate. - The type of the twelfth argument passed to the begin delegate. - The type of the thirteenth argument passed to the begin delegate. - The type of the fourteenth argument passed to the begin delegate. - The delegate that begins the asynchronous operation. - The delegate that ends the asynchronous operation. - Function that can be used to start the asynchronous operation and retrieve the result (represented as a Unit value) as an observable sequence. - or is null. - Each invocation of the resulting function will cause the asynchronous operation to be started. Subscription to the resulting sequence has no observable side-effect, and each subscription will produce the asynchronous operation's result. - - - - Invokes the specified function asynchronously, surfacing the result through an observable sequence. - - The type of the result returned by the function. - Function to run asynchronously. - An observable sequence exposing the function's result value, or an exception. - is null. - - - The function is called immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - - - - - Invokes the specified function asynchronously on the specified scheduler, surfacing the result through an observable sequence - - The type of the result returned by the function. - Function to run asynchronously. - Scheduler to run the function on. - An observable sequence exposing the function's result value, or an exception. - or is null. - - - The function is called immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - - - - - Invokes the asynchronous function, surfacing the result through an observable sequence. - - The type of the result returned by the asynchronous function. - Asynchronous function to run. - An observable sequence exposing the function's result value, or an exception. - is null. - - - The function is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - - - - - Invokes the asynchronous function, surfacing the result through an observable sequence. - - The type of the result returned by the asynchronous function. - Asynchronous function to run. - Scheduler on which to notify observers. - An observable sequence exposing the function's result value, or an exception. - is null or is null. - - - The function is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - - - - - Invokes the asynchronous function, surfacing the result through an observable sequence. - The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information. - - The type of the result returned by the asynchronous function. - Asynchronous function to run. - An observable sequence exposing the function's result value, or an exception. - is null. - - - The function is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed - subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator. - Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription - to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using - multicast operators. - - - - - - - Invokes the asynchronous function, surfacing the result through an observable sequence. - The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information. - - The type of the result returned by the asynchronous function. - Asynchronous function to run. - Scheduler on which to notify observers. - An observable sequence exposing the function's result value, or an exception. - is null or is null. - - - The function is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the function's result. - - If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed - subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator. - Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription - to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using - multicast operators. - - - - - - - Invokes the action asynchronously, surfacing the result through an observable sequence. - - Action to run asynchronously. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null. - - - The action is called immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - - - - - Invokes the action asynchronously on the specified scheduler, surfacing the result through an observable sequence. - - Action to run asynchronously. - Scheduler to run the action on. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - or is null. - - - The action is called immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - - - - - Invokes the asynchronous action, surfacing the result through an observable sequence. - - Asynchronous action to run. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null. - - - The action is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - - - - - Invokes the asynchronous action, surfacing the result through an observable sequence. - - Asynchronous action to run. - Scheduler on which to notify observers. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null or is null. - - - The action is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - - - - - Invokes the asynchronous action, surfacing the result through an observable sequence. - The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information. - - Asynchronous action to run. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null. - - - The action is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed - subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator. - Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription - to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using - multicast operators. - - - - - - - Invokes the asynchronous action, surfacing the result through an observable sequence. - The CancellationToken is shared by all subscriptions on the resulting observable sequence. See the remarks section for more information. - - Asynchronous action to run. - Scheduler on which to notify observers. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null or is null. - - - The action is started immediately, not during the subscription of the resulting sequence. - Multiple subscriptions to the resulting sequence can observe the action's outcome. - - If any subscription to the resulting sequence is disposed, the CancellationToken is set. The observer associated to the disposed - subscription won't see the TaskCanceledException, but other observers will. You can protect against this using the Catch operator. - Be careful when handing out the resulting sequence because of this behavior. The most common use is to have a single subscription - to the resulting sequence, which controls the CancellationToken state. Alternatively, you can control subscription behavior using - multicast operators. - - - - - - - Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started. - - The type of the result returned by the asynchronous function. - Asynchronous function to convert. - An observable sequence exposing the result of invoking the function, or an exception. - is null. - - - - Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started. - - The type of the result returned by the asynchronous function. - Asynchronous function to convert. - Scheduler on which to notify observers. - An observable sequence exposing the result of invoking the function, or an exception. - is null or is null. - - - - Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started. - The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation. - - The type of the result returned by the asynchronous function. - Asynchronous function to convert. - An observable sequence exposing the result of invoking the function, or an exception. - is null. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled. - - - - Converts to asynchronous function into an observable sequence. Each subscription to the resulting sequence causes the function to be started. - The CancellationToken passed to the asynchronous function is tied to the observable sequence's subscription that triggered the function's invocation and can be used for best-effort cancellation. - - The type of the result returned by the asynchronous function. - Asynchronous function to convert. - Scheduler on which to notify observers. - An observable sequence exposing the result of invoking the function, or an exception. - is null or is null. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled. - - - - Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started. - - Asynchronous action to convert. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null. - - - - Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started. - - Asynchronous action to convert. - Scheduler on which to notify observers. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - is null or is null. - - - - Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started. - The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation. - - Asynchronous action to convert. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled. - is null. - - - - Converts to asynchronous action into an observable sequence. Each subscription to the resulting sequence causes the action to be started. - The CancellationToken passed to the asynchronous action is tied to the observable sequence's subscription that triggered the action's invocation and can be used for best-effort cancellation. - - Asynchronous action to convert. - Scheduler on which to notify observers. - An observable sequence exposing a Unit value upon completion of the action, or an exception. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous function will be signaled. - is null or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the fifteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the fifteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the fifteenth argument passed to the function. - The type of the sixteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Asynchronous function. - is null. - - - - Converts the function into an asynchronous function. Each invocation of the resulting asynchronous function causes an invocation of the original synchronous function on the specified scheduler. - - The type of the first argument passed to the function. - The type of the second argument passed to the function. - The type of the third argument passed to the function. - The type of the fourth argument passed to the function. - The type of the fifth argument passed to the function. - The type of the sixth argument passed to the function. - The type of the seventh argument passed to the function. - The type of the eighth argument passed to the function. - The type of the ninth argument passed to the function. - The type of the tenth argument passed to the function. - The type of the eleventh argument passed to the function. - The type of the twelfth argument passed to the function. - The type of the thirteenth argument passed to the function. - The type of the fourteenth argument passed to the function. - The type of the fifteenth argument passed to the function. - The type of the sixteenth argument passed to the function. - The type of the result returned by the function. - Function to convert to an asynchronous function. - Scheduler to invoke the original function on. - Asynchronous function. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - The type of the fifteenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - The type of the fifteenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the default scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - The type of the fifteenth argument passed to the action. - The type of the sixteenth argument passed to the action. - Action to convert to an asynchronous action. - Asynchronous action. - is null. - - - - Converts the function into an asynchronous action. Each invocation of the resulting asynchronous action causes an invocation of the original synchronous action on the specified scheduler. - - The type of the first argument passed to the action. - The type of the second argument passed to the action. - The type of the third argument passed to the action. - The type of the fourth argument passed to the action. - The type of the fifth argument passed to the action. - The type of the sixth argument passed to the action. - The type of the seventh argument passed to the action. - The type of the eighth argument passed to the action. - The type of the ninth argument passed to the action. - The type of the tenth argument passed to the action. - The type of the eleventh argument passed to the action. - The type of the twelfth argument passed to the action. - The type of the thirteenth argument passed to the action. - The type of the fourteenth argument passed to the action. - The type of the fifteenth argument passed to the action. - The type of the sixteenth argument passed to the action. - Action to convert to an asynchronous action. - Scheduler to invoke the original action on. - Asynchronous action. - or is null. - - - - Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty. - This operation subscribes to the observable sequence, making it hot. - - The type of the elements in the source sequence. - Source sequence to await. - Object that can be awaited. - is null. - - - - Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty. - This operation subscribes and connects to the observable sequence, making it hot. - - The type of the elements in the source sequence. - Source sequence to await. - Object that can be awaited. - is null. - - - - Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty. - This operation subscribes to the observable sequence, making it hot. The supplied CancellationToken can be used to cancel the subscription. - - The type of the elements in the source sequence. - Source sequence to await. - Cancellation token. - Object that can be awaited. - is null. - - - - Gets an awaiter that returns the last value of the observable sequence or throws an exception if the sequence is empty. - This operation subscribes and connects to the observable sequence, making it hot. The supplied CancellationToken can be used to cancel the subscription and connection. - - The type of the elements in the source sequence. - Source sequence to await. - Cancellation token. - Object that can be awaited. - is null. - - - - Multicasts the source sequence notifications through the specified subject to the resulting connectable observable. Upon connection of the - connectable observable, the subject is subscribed to the source exactly one, and messages are forwarded to the observers registered with - the connectable observable. For specializations with fixed subject types, see Publish, PublishLast, and Replay. - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be pushed into the specified subject. - Subject to push source elements into. - A connectable observable sequence that upon connection causes the source sequence to push results into the specified subject. - or is null. - - - - Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. Each - subscription to the resulting sequence causes a separate multicast invocation, exposing the sequence resulting from the selector function's - invocation. For specializations with fixed subject types, see Publish, PublishLast, and Replay. - - The type of the elements in the source sequence. - The type of the elements produced by the intermediate subject. - The type of the elements in the result sequence. - Source sequence which will be multicasted in the specified selector function. - Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function. - Selector function which can use the multicasted source sequence subject to the policies enforced by the created subject. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence. - This operator is a specialization of Multicast using a regular . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - Subscribers will receive all notifications of the source from the time of the subscription on. - - - - - 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. - This operator is a specialization of Multicast using a regular . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all notifications of the source from the time of the subscription on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence and starts with initialValue. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Initial value received by observers upon subscription. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - Subscribers will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on. - - - - - 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. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive immediately receive the initial value, followed by all notifications of the source from the time of the subscription on. - Initial value received by observers upon subscription. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence containing only the last notification. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - Subscribers will only receive the last notification of the source. - - - - - 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. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will only receive the last notification of the source. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - - - - - Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence. - - The type of the elements in the source sequence. - Connectable observable sequence. - An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence. - is null. - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - Subscribers will receive all the notifications of the source. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all notifications. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Scheduler where connected observers will be invoked on. - A connectable observable sequence that shares a single subscription to the underlying sequence. - or is null. - Subscribers will receive all the notifications of the source. - - - - - 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. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - - - - - 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. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source. - Scheduler where connected observers within the selector function will be invoked on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum time length of the replay buffer. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - is less than TimeSpan.Zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum time length for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum time length of the replay buffer. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - is less than TimeSpan.Zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum time length of the replay buffer. - Scheduler where connected observers will be invoked on. - A connectable observable sequence that shares a single subscription to the underlying sequence. - or is null. - is less than TimeSpan.Zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum time length for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum time length of the replay buffer. - Scheduler where connected observers within the selector function will be invoked on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - is less than TimeSpan.Zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize notifications. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum element count of the replay buffer. - Scheduler where connected observers will be invoked on. - A connectable observable sequence that shares a single subscription to the underlying sequence. - or is null. - is less than zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum element count of the replay buffer. - Scheduler where connected observers within the selector function will be invoked on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - is less than zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum element count of the replay buffer. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - is less than zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum element count of the replay buffer. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - is less than zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - A connectable observable sequence that shares a single subscription to the underlying sequence. - is null. - is less than zero. - is less than TimeSpan.Zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum time length and element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or is null. - is less than zero. - is less than TimeSpan.Zero. - - - - - Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying notifications subject to a maximum time length and element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - Scheduler where connected observers will be invoked on. - A connectable observable sequence that shares a single subscription to the underlying sequence. - or is null. - is less than zero. - is less than TimeSpan.Zero. - Subscribers will receive all the notifications of the source subject to the specified replay buffer trimming policy. - - - - - 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 notifications subject to a maximum time length and element count for the replay buffer. - This operator is a specialization of Multicast using a . - - The type of the elements in the source sequence. - The type of the elements in the result sequence. - Source sequence whose elements will be multicasted through a single shared subscription. - Selector function which can use the multicasted source sequence as many times as needed, without causing multiple subscriptions to the source sequence. Subscribers to the given source will receive all the notifications of the source subject to the specified replay buffer trimming policy. - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - Scheduler where connected observers within the selector function will be invoked on. - An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. - or or is null. - is less than zero. - is less than TimeSpan.Zero. - - - - - Produces an enumerable sequence of consecutive (possibly empty) chunks of the source sequence. - - The type of the elements in the source sequence. - Source observable sequence. - The enumerable sequence that returns consecutive (possibly empty) chunks upon each iteration. - is null. - - - - Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations. - - The type of the elements in the source sequence. - The type of the elements produced by the merge operation during collection. - Source observable sequence. - Factory to create a new collector object. - Merges a sequence element with the current collector. - The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration. - or or is null. - - - - Produces an enumerable sequence that returns elements collected/aggregated from the source sequence between consecutive iterations. - - The type of the elements in the source sequence. - The type of the elements produced by the merge operation during collection. - Source observable sequence. - Factory to create the initial collector object. - Merges a sequence element with the current collector. - Factory to replace the current collector by a new collector. - The enumerable sequence that returns collected/aggregated elements from the source sequence upon each iteration. - or or or is null. - - - - Returns the first element of an observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - The first element in the observable sequence. - is null. - The source sequence is empty. - - - - - Returns the first element of an observable sequence that satisfies the condition in the predicate. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The first element in the observable sequence that satisfies the condition in the predicate. - or is null. - No element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - - Returns the first element of an observable sequence, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - The first element in the observable sequence, or a default value if no such element exists. - is null. - - - - - Returns the first element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The first element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - - - - - Invokes an action for each element in the observable sequence, and blocks until the sequence is terminated. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - or is null. - Because of its blocking nature, this operator is mainly used for testing. - - - - Invokes an action for each element in the observable sequence, incorporating the element's index, and blocks until the sequence is terminated. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - or is null. - Because of its blocking nature, this operator is mainly used for testing. - - - - Returns an enumerator that enumerates all values of the observable sequence. - - The type of the elements in the source sequence. - An observable sequence to get an enumerator for. - The enumerator that can be used to enumerate over the elements in the observable sequence. - is null. - - - - Returns the last element of an observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - The last element in the observable sequence. - is null. - The source sequence is empty. - - - - - Returns the last element of an observable sequence that satisfies the condition in the predicate. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The last element in the observable sequence that satisfies the condition in the predicate. - or is null. - No element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - - Returns the last element of an observable sequence, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - The last element in the observable sequence, or a default value if no such element exists. - is null. - - - - - Returns the last element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The last element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - - - - - Returns an enumerable sequence whose enumeration returns the latest observed element in the source observable sequence. - Enumerators on the resulting sequence will never produce the same element repeatedly, and will block until the next element becomes available. - - The type of the elements in the source sequence. - Source observable sequence. - 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 an enumerable sequence whose enumeration returns the most recently observed element in the source observable sequence, using the specified initial value in case no element has been sampled yet. - Enumerators on the resulting sequence never block and can produce the same element repeatedly. - - The type of the elements in the source sequence. - Source observable sequence. - Initial value that will be yielded by the enumerable sequence if no element has been sampled yet. - The enumerable sequence that returns the last sampled element upon each iteration. - is null. - - - - Returns an enumerable sequence whose enumeration blocks until the next element in the source observable sequence becomes available. - Enumerators on the resulting sequence will block until the next element becomes available. - - The type of the elements in the source sequence. - Source observable sequence. - The enumerable sequence that blocks upon each iteration until the next element in the observable source sequence becomes available. - is null. - - - - Returns the only element of an observable sequence, and throws an exception if there is not exactly one element in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - The single element in the observable sequence. - is null. - The source sequence contains more than one element. -or- The source sequence is empty. - - - - - Returns the only element of an observable sequence that satisfies the condition in the predicate, and throws an exception if there is not exactly one element matching the predicate in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The single element in the observable sequence that satisfies the condition in the predicate. - or is null. - No element satisfies the condition in the predicate. -or- More than one element satisfies the condition in the predicate. -or- The source sequence is empty. - - - - - 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. - - The type of the elements in the source sequence. - Source observable sequence. - The single element in the observable sequence, or a default value if no such element exists. - is null. - The source sequence contains more than one element. - - - - - Returns the only element of an observable sequence that satisfies the condition in the predicate, or a default value if no such element exists; this method throws an exception if there is more than one element matching the predicate in the observable sequence. - - The type of the elements in the source sequence. - Source observable sequence. - A predicate function to evaluate for elements in the source sequence. - The single element in the observable sequence that satisfies the condition in the predicate, or a default value if no such element exists. - or is null. - The sequence contains more than one element that satisfies the condition in the predicate. - - - - - Waits for the observable sequence to complete and returns the last element of the sequence. - If the sequence terminates with an OnError notification, the exception is thrown. - - The type of the elements in the source sequence. - Source observable sequence. - The last element in the observable sequence. - is null. - The source sequence is empty. - - - - Wraps the source sequence in order to run its observer callbacks on the specified scheduler. - - The type of the elements in the source sequence. - Source sequence. - Scheduler to notify observers on. - The source sequence whose observations happen on the specified scheduler. - or is null. - - This only invokes observer callbacks on a scheduler. In case the subscription and/or unsubscription actions have side-effects - that require to be run on a scheduler, use . - - - - - Wraps the source sequence in order to run its observer callbacks on the specified synchronization context. - - The type of the elements in the source sequence. - Source sequence. - Synchronization context to notify observers on. - The source sequence whose observations happen on the specified synchronization context. - or is null. - - This only invokes observer callbacks on a synchronization context. In case the subscription and/or unsubscription actions have side-effects - that require to be run on a synchronization context, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified scheduler. This operation is not commonly used; - see the remarks section for more information on the distinction between SubscribeOn and ObserveOn. - - The type of the elements in the source sequence. - Source sequence. - Scheduler to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler. - or is null. - - This only performs the side-effects of subscription and unsubscription on the specified scheduler. In order to invoke observer - callbacks on a scheduler, use . - - - - - Wraps the source sequence in order to run its subscription and unsubscription logic on the specified synchronization context. This operation is not commonly used; - see the remarks section for more information on the distinction between SubscribeOn and ObserveOn. - - The type of the elements in the source sequence. - Source sequence. - Synchronization context to perform subscription and unsubscription actions on. - The source sequence whose subscriptions and unsubscriptions happen on the specified synchronization context. - or is null. - - This only performs the side-effects of subscription and unsubscription on the specified synchronization context. In order to invoke observer - callbacks on a synchronization context, use . - - - - - Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently. - This overload is useful to "fix" an observable sequence that exhibits concurrent callbacks on individual observers, which is invalid behavior for the query processor. - - The type of the elements in the source sequence. - Source sequence. - The source sequence whose outgoing calls to observers are synchronized. - is null. - - It's invalid behavior - according to the observer grammar - for a sequence to exhibit concurrent callbacks on a given observer. - This operator can be used to "fix" a source that doesn't conform to this rule. - - - - - Synchronizes the observable sequence such that observer notifications cannot be delivered concurrently, using the specified gate object. - This overload is useful when writing n-ary query operators, in order to prevent concurrent callbacks from different sources by synchronizing on a common gate object. - - The type of the elements in the source sequence. - Source sequence. - Gate object to synchronize each observer call on. - The source sequence whose outgoing calls to observers are synchronized on the given gate object. - or is null. - - - - Subscribes an observer to an enumerable sequence. - - The type of the elements in the source sequence. - Enumerable sequence to subscribe to. - Observer that will receive notifications from the enumerable sequence. - Disposable object that can be used to unsubscribe the observer from the enumerable - or is null. - - - - Subscribes an observer to an enumerable sequence, using the specified scheduler to run the enumeration loop. - - The type of the elements in the source sequence. - Enumerable sequence to subscribe to. - Observer that will receive notifications from the enumerable sequence. - Scheduler to perform the enumeration on. - Disposable object that can be used to unsubscribe the observer from the enumerable - or or is null. - - - - Converts an observable sequence to an enumerable sequence. - - The type of the elements in the source sequence. - An observable sequence to convert to an enumerable sequence. - The enumerable sequence containing the elements in the observable sequence. - is null. - - - - Exposes an observable sequence as an object with an Action-based .NET event. - - Observable source sequence. - The event source object. - is null. - - - - Exposes an observable sequence as an object with an Action<TSource>-based .NET event. - - The type of the elements in the source sequence. - Observable source sequence. - The event source object. - is null. - - - - Exposes an observable sequence as an object with a .NET event, conforming to the standard .NET event pattern. - - The type of the event data generated by the event. - Observable source sequence. - The event source object. - is null. - - - - Converts an enumerable sequence to an observable sequence. - - The type of the elements in the source sequence. - Enumerable sequence to convert to an observable sequence. - The observable sequence whose elements are pulled from the given enumerable sequence. - is null. - - - - Converts an enumerable sequence to an observable sequence, using the specified scheduler to run the enumeration loop. - - The type of the elements in the source sequence. - Enumerable sequence to convert to an observable sequence. - Scheduler to run the enumeration of the input sequence on. - The observable sequence whose elements are pulled from the given enumerable sequence. - or is null. - - - - Creates an observable sequence from a specified Subscribe method implementation. - - The type of the elements in the produced sequence. - Implementation of the resulting observable sequence's Subscribe method. - The observable sequence with the specified implementation for the Subscribe method. - is null. - - Use of this operator is preferred over manual implementation of the IObservable<T> interface. In case - you need a type implementing IObservable<T> rather than an anonymous implementation, consider using - the abstract base class. - - - - - Creates an observable sequence from a specified Subscribe method implementation. - - The type of the elements in the produced sequence. - Implementation of the resulting observable sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable. - The observable sequence with the specified implementation for the Subscribe method. - is null. - - Use of this operator is preferred over manual implementation of the IObservable<T> interface. In case - you need a type implementing IObservable<T> rather than an anonymous implementation, consider using - the abstract base class. - - - - - Creates an observable sequence from a specified cancellable asynchronous Subscribe method. - The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation. - - The type of the elements in the produced sequence. - Asynchronous method used to produce elements. - The observable sequence surfacing the elements produced by the asynchronous method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled. - - - - Creates an observable sequence from a specified asynchronous Subscribe method. - - The type of the elements in the produced sequence. - Asynchronous method used to produce elements. - The observable sequence surfacing the elements produced by the asynchronous method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Creates an observable sequence from a specified cancellable asynchronous Subscribe method. - The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation. - - The type of the elements in the produced sequence. - Asynchronous method used to implement the resulting sequence's Subscribe method. - The observable sequence with the specified implementation for the Subscribe method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled. - - - - Creates an observable sequence from a specified asynchronous Subscribe method. - - The type of the elements in the produced sequence. - Asynchronous method used to implement the resulting sequence's Subscribe method. - The observable sequence with the specified implementation for the Subscribe method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Creates an observable sequence from a specified cancellable asynchronous Subscribe method. - The CancellationToken passed to the asynchronous Subscribe method is tied to the returned disposable subscription, allowing best-effort cancellation. - - The type of the elements in the produced sequence. - Asynchronous method used to implement the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable. - The observable sequence with the specified implementation for the Subscribe method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous subscribe function will be signaled. - - - - Creates an observable sequence from a specified asynchronous Subscribe method. - - The type of the elements in the produced sequence. - Asynchronous method used to implement the resulting sequence's Subscribe method, returning an Action delegate that will be wrapped in an IDisposable. - The observable sequence with the specified implementation for the Subscribe method. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes. - - The type of the elements in the sequence returned by the factory function, and in the resulting sequence. - Observable factory function to invoke for each observer that subscribes to the resulting sequence. - An observable sequence whose observers trigger an invocation of the given observable factory function. - is null. - - - - Returns an observable sequence that starts the specified asynchronous factory function whenever a new observer subscribes. - - The type of the elements in the sequence returned by the factory function, and in the resulting sequence. - Asynchronous factory function to start for each observer that subscribes to the resulting sequence. - An observable sequence whose observers trigger the given asynchronous observable factory function to be started. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Returns an observable sequence that starts the specified cancellable asynchronous factory function whenever a new observer subscribes. - The CancellationToken passed to the asynchronous factory function is tied to the returned disposable subscription, allowing best-effort cancellation. - - The type of the elements in the sequence returned by the factory function, and in the resulting sequence. - Asynchronous factory function to start for each observer that subscribes to the resulting sequence. - An observable sequence whose observers trigger the given asynchronous observable factory function to be started. - is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous observable factory function will be signaled. - - - - Returns an empty observable sequence. - - The type used for the IObservable<T> type parameter of the resulting sequence. - An observable sequence with no elements. - - - - Returns an empty observable sequence. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - An observable sequence with no elements. - - - - Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Scheduler to send the termination call on. - An observable sequence with no elements. - is null. - - - - Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Scheduler to send the termination call on. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - An observable sequence with no elements. - is null. - - - - Generates an observable sequence by running a state-driven loop producing the sequence's elements. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - The generated sequence. - or or is null. - - - - Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Scheduler on which to run the generator loop. - The generated sequence. - or or or is null. - - - - Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins). - - The type used for the IObservable<T> type parameter of the resulting sequence. - An observable sequence whose observers will never get called. - - - - Returns a non-terminating observable sequence, which can be used to denote an infinite duration (e.g. when using reactive joins). - - The type used for the IObservable<T> type parameter of the resulting sequence. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - An observable sequence whose observers will never get called. - - - - Generates an observable sequence of integral numbers within a specified range. - - The value of the first integer in the sequence. - The number of sequential integers to generate. - An observable sequence that contains a range of sequential integral numbers. - is less than zero. -or- + - 1 is larger than . - - - - Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to send out observer messages. - - The value of the first integer in the sequence. - The number of sequential integers to generate. - Scheduler to run the generator loop on. - An observable sequence that contains a range of sequential integral numbers. - is less than zero. -or- + - 1 is larger than . - is null. - - - - Generates an observable sequence that repeats the given element infinitely. - - The type of the element that will be repeated in the produced sequence. - Element to repeat. - An observable sequence that repeats the given element infinitely. - - - - Generates an observable sequence that repeats the given element infinitely, using the specified scheduler to send out observer messages. - - The type of the element that will be repeated in the produced sequence. - Element to repeat. - Scheduler to run the producer loop on. - An observable sequence that repeats the given element infinitely. - is null. - - - - Generates an observable sequence that repeats the given element the specified number of times. - - The type of the element that will be repeated in the produced sequence. - Element to repeat. - Number of times to repeat the element. - An observable sequence that repeats the given element the specified number of times. - is less than zero. - - - - Generates an observable sequence that repeats the given element the specified number of times, using the specified scheduler to send out observer messages. - - The type of the element that will be repeated in the produced sequence. - Element to repeat. - Number of times to repeat the element. - Scheduler to run the producer loop on. - An observable sequence that repeats the given element the specified number of times. - is less than zero. - is null. - - - - Returns an observable sequence that contains a single element. - - The type of the element that will be returned in the produced sequence. - Single element in the resulting observable sequence. - An observable sequence containing the single specified element. - - - - Returns an observable sequence that contains a single element, using the specified scheduler to send out observer messages. - - The type of the element that will be returned in the produced sequence. - Single element in the resulting observable sequence. - Scheduler to send the single element on. - An observable sequence containing the single specified element. - is null. - - - - Returns an observable sequence that terminates with an exception. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Exception object used for the sequence's termination. - The observable sequence that terminates exceptionally with the specified exception object. - is null. - - - - Returns an observable sequence that terminates with an exception. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Exception object used for the sequence's termination. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - The observable sequence that terminates exceptionally with the specified exception object. - is null. - - - - Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Exception object used for the sequence's termination. - Scheduler to send the exceptional termination call on. - The observable sequence that terminates exceptionally with the specified exception object. - or is null. - - - - Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single OnError message. - - The type used for the IObservable<T> type parameter of the resulting sequence. - Exception object used for the sequence's termination. - Scheduler to send the exceptional termination call on. - Object solely used to infer the type of the type parameter. This parameter is typically used when creating a sequence of anonymously typed elements. - The observable sequence that terminates exceptionally with the specified exception object. - or is null. - - - - Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. - - The type of the elements in the produced sequence. - The type of the resource used during the generation of the resulting sequence. Needs to implement . - Factory function to obtain a resource object. - Factory function to obtain an observable sequence that depends on the obtained resource. - An observable sequence whose lifetime controls the lifetime of the dependent resource object. - or is null. - - - - Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. The resource is obtained and used through asynchronous methods. - The CancellationToken passed to the asynchronous methods is tied to the returned disposable subscription, allowing best-effort cancellation at any stage of the resource acquisition or usage. - - The type of the elements in the produced sequence. - The type of the resource used during the generation of the resulting sequence. Needs to implement . - Asynchronous factory function to obtain a resource object. - Asynchronous factory function to obtain an observable sequence that depends on the obtained resource. - An observable sequence whose lifetime controls the lifetime of the dependent resource object. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - When a subscription to the resulting sequence is disposed, the CancellationToken that was fed to the asynchronous resource factory and observable factory functions will be signaled. - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the sender that raises the event. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on a supplied event delegate type with a strongly typed sender parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The delegate type of the event to be converted. - The type of the sender that raises the event. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains data representations of invocations of the underlying .NET event. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event, conforming to the standard .NET event pattern based on , to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Object instance that exposes the event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Object instance that exposes the event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Object instance that exposes the event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Object instance that exposes the event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the sender that raises the event. - The type of the event data generated by the event. - Object instance that exposes the event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts an instance .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the target object type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the sender that raises the event. - The type of the event data generated by the event. - Object instance that exposes the event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Type that exposes the static event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with an parameter, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - Type that exposes the static event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Type that exposes the static event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the event data generated by the event. - Type that exposes the static event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the sender that raises the event. - The type of the event data generated by the event. - Type that exposes the static event to convert. - Name of the event to convert. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEventPattern, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEventPattern, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a static .NET event, conforming to the standard .NET event pattern with a strongly typed sender and strongly typed event arguments, to an observable sequence. - Each event invocation is surfaced through an OnNext message in the resulting sequence. - Reflection is used to discover the event based on the specified type and the specified event name. - For conversion of events that don't conform to the standard .NET event pattern, use any of the FromEvent overloads instead. - - The type of the sender that raises the event. - The type of the event data generated by the event. - Type that exposes the static event to convert. - Name of the event to convert. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains data representations of invocations of the underlying .NET event. - or or is null. - The event could not be found. -or- The event does not conform to the standard .NET event pattern. -or- The event's first argument type is not assignable to TSender. -or- The event's second argument type is not assignable to TEventArgs. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEventPattern calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEventPattern that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEvent, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event to an observable sequence, using a conversion function to obtain the event delegate. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEvent, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a .NET event to an observable sequence, using a supplied event delegate type. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The delegate type of the event to be converted. - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEvent, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts a generic Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - The type of the event data generated by the event. - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - The current is captured during the call to FromEvent, and is used to post add and remove handler invocations. - This behavior ensures add and remove handler operations for thread-affine events are accessed from the same context, as required by some UI frameworks. - - - If no SynchronizationContext is present at the point of calling FromEvent, add and remove handler invocations are made synchronously on the thread - making the Subscribe or Dispose call, respectively. - - - It's recommended to lift FromEvent calls outside event stream query expressions due to the free-threaded nature of Reactive Extensions. Doing so - makes the captured SynchronizationContext predictable. This best practice also reduces clutter of bridging code inside queries, making the query expressions - more concise and easier to understand. - - - - - - - Converts an Action-based .NET event to an observable sequence. Each event invocation is surfaced through an OnNext message in the resulting sequence. - For conversion of events conforming to the standard .NET event pattern, use any of the FromEventPattern overloads instead. - - Action that attaches the given event handler to the underlying .NET event. - Action that detaches the given event handler from the underlying .NET event. - The scheduler to run the add and remove event handler logic on. - The observable sequence that contains the event argument objects passed to the invocations of the underlying .NET event. - or or is null. - - - Add and remove handler invocations are made whenever the number of observers grows beyond zero. - As such, an event handler may be shared by multiple simultaneously active observers, using a subject for multicasting. - - - Add and remove handler invocations are run on the specified scheduler. This behavior allows add and remove handler operations for thread-affine events to be - accessed from the same context, as required by some UI frameworks. - - - It's recommended to lift FromEvent calls outside event stream query expressions. This best practice reduces clutter of bridging code inside queries, - making the query expressions more concise and easier to understand. This has additional benefits for overloads of FromEvent that omit the IScheduler - parameter. For more information, see the remarks section on those overloads. - - - - - - - Invokes an action for each element in the observable sequence, and returns a Task object that will get signaled when the sequence terminates. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Task that signals the termination of the sequence. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Invokes an action for each element in the observable sequence, and returns a Task object that will get signaled when the sequence terminates. - The loop can be quit prematurely by setting the specified cancellation token. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Cancellation token used to stop the loop. - Task that signals the termination of the sequence. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Invokes an action for each element in the observable sequence, incorporating the element's index, and returns a Task object that will get signaled when the sequence terminates. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Task that signals the termination of the sequence. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Invokes an action for each element in the observable sequence, incorporating the element's index, and returns a Task object that will get signaled when the sequence terminates. - The loop can be quit prematurely by setting the specified cancellation token. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Cancellation token used to stop the loop. - Task that signals the termination of the sequence. - or is null. - This operator is especially useful in conjunction with the asynchronous programming features introduced in C# 5.0 and Visual Basic 11. - - - - Uses to determine which source in to return, choosing if no match is found. - - The type of the value returned by the selector function, used to look up the resulting source. - The type of the elements in the result sequence. - Selector function invoked to determine the source to lookup in the dictionary. - Dictionary of sources to select from based on the invocation result. - Default source to select in case no matching source in is found. - The observable sequence retrieved from the dictionary based on the invocation result, or if no match is found. - or or is null. - - - - Uses to determine which source in to return, choosing an empty sequence on the specified scheduler if no match is found. - - The type of the value returned by the selector function, used to look up the resulting source. - The type of the elements in the result sequence. - Selector function invoked to determine the source to lookup in the dictionary. - Dictionary of sources to select from based on the invocation result. - Scheduler to generate an empty sequence on in case no matching source in is found. - The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found. - or or is null. - - - - Uses to determine which source in to return, choosing an empty sequence if no match is found. - - The type of the value returned by the selector function, used to look up the resulting source. - The type of the elements in the result sequence. - Selector function invoked to determine the source to lookup in the dictionary. - Dictionary of sources to select from based on the invocation result. - The observable sequence retrieved from the dictionary based on the invocation result, or an empty sequence if no match is found. - or is null. - - - - Repeats the given as long as the specified holds, where the is evaluated after each repeated completed. - - The type of the elements in the source sequence. - Source to repeat as long as the function evaluates to true. - Condition that will be evaluated upon the completion of an iteration through the , to determine whether repetition of the source is required. - The observable sequence obtained by concatenating the sequence as long as the holds. - or is null. - - - - Concatenates the observable sequences obtained by running the for each element in the given enumerable . - - The type of the elements in the enumerable source sequence. - The type of the elements in the observable result sequence. - Enumerable source for which each element will be mapped onto an observable source that will be concatenated in the result sequence. - Function to select an observable source for each element in the . - The observable sequence obtained by concatenating the sources returned by for each element in the . - or is null. - - - - If the specified evaluates true, select the sequence. Otherwise, select the sequence. - - The type of the elements in the result sequence. - Condition evaluated to decide which sequence to return. - Sequence returned in case evaluates true. - Sequence returned in case evaluates false. - if evaluates true; otherwise. - or or is null. - - - - If the specified evaluates true, select the sequence. Otherwise, return an empty sequence. - - The type of the elements in the result sequence. - Condition evaluated to decide which sequence to return. - Sequence returned in case evaluates true. - if evaluates true; an empty sequence otherwise. - or is null. - - - - If the specified evaluates true, select the sequence. Otherwise, return an empty sequence generated on the specified scheduler. - - The type of the elements in the result sequence. - Condition evaluated to decide which sequence to return. - Sequence returned in case evaluates true. - Scheduler to generate an empty sequence on in case evaluates false. - if evaluates true; an empty sequence otherwise. - or or is null. - - - - Repeats the given as long as the specified holds, where the is evaluated before each repeated is subscribed to. - - The type of the elements in the source sequence. - Source to repeat as long as the function evaluates to true. - Condition that will be evaluated before subscription to the , to determine whether repetition of the source is required. - The observable sequence obtained by concatenating the sequence as long as the holds. - or is null. - - - - Creates a pattern that matches when both observable sequences have an available element. - - The type of the elements in the left sequence. - The type of the elements in the right sequence. - Observable sequence to match with the right sequence. - Observable sequence to match with the left sequence. - Pattern object that matches when both observable sequences have an available element. - or is null. - - - - Matches when the observable sequence has an available element and projects the element by invoking the selector function. - - The type of the elements in the source sequence. - The type of the elements in the result sequence, returned by the selector function. - Observable sequence to apply the selector on. - Selector that will be invoked for elements in the source sequence. - Plan that produces the projected results, to be fed (with other plans) to the When operator. - or is null. - - - - Joins together the results from several patterns. - - The type of the elements in the result sequence, obtained from the specified patterns. - A series of plans created by use of the Then operator on patterns. - An observable sequence with the results from matching several patterns. - is null. - - - - Joins together the results from several patterns. - - The type of the elements in the result sequence, obtained from the specified patterns. - A series of plans created by use of the Then operator on patterns. - An observable sequence with the results form matching several patterns. - is null. - - - - Propagates the observable sequence that reacts first. - - The type of the elements in the source sequences. - First observable sequence. - Second observable sequence. - An observable sequence that surfaces either of the given sequences, whichever reacted first. - or is null. - - - - Propagates the observable sequence that reacts first. - - The type of the elements in the source sequences. - Observable sources competing to react first. - An observable sequence that surfaces any of the given sequences, whichever reacted first. - is null. - - - - Propagates the observable sequence that reacts first. - - The type of the elements in the source sequences. - Observable sources competing to react first. - An observable sequence that surfaces any of the given sequences, whichever reacted first. - is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - The type of the elements in the sequences indicating buffer closing events. - Source sequence to produce buffers over. - A function invoked to define the boundaries of the produced buffers. A new buffer is started when the previous one is closed. - An observable sequence of buffers. - or is null. - - - - Projects each element of an observable sequence into zero or more buffers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - The type of the elements in the sequence indicating buffer opening events, also passed to the closing selector to obtain a sequence of buffer closing events. - The type of the elements in the sequences indicating buffer closing events. - Source sequence to produce buffers over. - Observable sequence whose elements denote the creation of new buffers. - A function invoked to define the closing of each produced buffer. - An observable sequence of buffers. - or or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - The type of the elements in the sequences indicating buffer boundary events. - Source sequence to produce buffers over. - Sequence of buffer boundary markers. The current buffer is closed and a new buffer is opened upon receiving a boundary marker. - An observable sequence of buffers. - or is null. - - - - Continues an observable sequence that is terminated by an exception of the specified type with the observable sequence produced by the handler. - - The type of the elements in the source sequence and sequences returned by the exception handler function. - The type of the exception to catch and handle. Needs to derive from . - Source sequence. - Exception handler function, producing another observable sequence. - An observable sequence containing the source sequence's elements, followed by the elements produced by the handler's resulting observable sequence in case an exception occurred. - or is null. - - - - Continues an observable sequence that is terminated by an exception with the next observable sequence. - - The type of the elements in the source sequence and handler sequence. - First observable sequence whose exception (if any) is caught. - Second observable sequence used to produce results when an error occurred in the first sequence. - An observable sequence containing the first sequence's elements, followed by the elements of the second sequence in case an exception occurred. - or is null. - - - - Continues an observable sequence that is terminated by an exception with the next observable sequence. - - The type of the elements in the source and handler sequences. - Observable sequences to catch exceptions for. - An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully. - is null. - - - - Continues an observable sequence that is terminated by an exception with the next observable sequence. - - The type of the elements in the source and handler sequences. - Observable sequences to catch exceptions for. - An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully. - is null. - - - - Merges two observable sequences into one observable sequence by using the selector function whenever one of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Function to invoke whenever either of the sources produces an element. - An observable sequence containing the result of combining elements of both sources using the specified result selector function. - or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Fifteenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the sixteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Fifteenth observable source. - Sixteenth observable source. - Function to invoke whenever any of the sources produces an element. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. - - The type of the elements in the source sequences. - The type of the elements in the result sequence, returned by the selector function. - Observable sources. - Function to invoke whenever any of the sources produces an element. For efficiency, the input list is reused after the selector returns. Either aggregate or copy the values during the function call. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or is null. - - - - Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element. - - The type of the elements in the source sequences, and in the lists in the result sequence. - Observable sources. - An observable sequence containing lists of the latest elements of the sources. - is null. - - - - Merges the specified observable sequences into one observable sequence by emitting a list with the latest source elements whenever any of the observable sequences produces an element. - - The type of the elements in the source sequences, and in the lists in the result sequence. - Observable sources. - An observable sequence containing lists of the latest elements of the sources. - is null. - - - - Concatenates the second observable sequence to the first observable sequence upon successful termination of the first. - - The type of the elements in the source sequences. - First observable sequence. - Second observable sequence. - An observable sequence that contains the elements of the first sequence, followed by those of the second the sequence. - or is null. - - - - Concatenates all of the specified observable sequences, as long as the previous observable sequence terminated successfully. - - The type of the elements in the source sequences. - Observable sequences to concatenate. - An observable sequence that contains the elements of each given sequence, in sequential order. - is null. - - - - Concatenates all observable sequences in the given enumerable sequence, as long as the previous observable sequence terminated successfully. - - The type of the elements in the source sequences. - Observable sequences to concatenate. - An observable sequence that contains the elements of each given sequence, in sequential order. - is null. - - - - Concatenates all inner observable sequences, as long as the previous observable sequence terminated successfully. - - The type of the elements in the source sequences. - Observable sequence of inner observable sequences. - An observable sequence that contains the elements of each observed inner sequence, in sequential order. - is null. - - - - Concatenates all task results, as long as the previous task terminated successfully. - - The type of the results produced by the tasks. - Observable sequence of tasks. - An observable sequence that contains the results of each task, in sequential order. - is null. - If the tasks support cancellation, consider manual conversion of the tasks using , followed by a concatenation operation using . - - - - Merges elements from all inner observable sequences into a single observable sequence. - - The type of the elements in the source sequences. - Observable sequence of inner observable sequences. - The observable sequence that merges the elements of the inner sequences. - is null. - - - - Merges results from all source tasks into a single observable sequence. - - The type of the results produced by the source tasks. - Observable sequence of tasks. - The observable sequence that merges the results of the source tasks. - is null. - If the tasks support cancellation, consider manual conversion of the tasks using , followed by a merge operation using . - - - - Merges elements from all inner observable sequences into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences. - - The type of the elements in the source sequences. - Observable sequence of inner observable sequences. - Maximum number of inner observable sequences being subscribed to concurrently. - The observable sequence that merges the elements of the inner sequences. - is null. - is less than or equal to zero. - - - - Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences. - - The type of the elements in the source sequences. - Enumerable sequence of observable sequences. - Maximum number of observable sequences being subscribed to concurrently. - The observable sequence that merges the elements of the observable sequences. - is null. - is less than or equal to zero. - - - - Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences, and using the specified scheduler for enumeration of and subscription to the sources. - - The type of the elements in the source sequences. - Enumerable sequence of observable sequences. - Maximum number of observable sequences being subscribed to concurrently. - Scheduler to run the enumeration of the sequence of sources on. - The observable sequence that merges the elements of the observable sequences. - or is null. - is less than or equal to zero. - - - - Merges elements from two observable sequences into a single observable sequence. - - The type of the elements in the source sequences. - First observable sequence. - Second observable sequence. - The observable sequence that merges the elements of the given sequences. - or is null. - - - - Merges elements from two observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources. - - The type of the elements in the source sequences. - First observable sequence. - Second observable sequence. - Scheduler used to introduce concurrency for making subscriptions to the given sequences. - The observable sequence that merges the elements of the given sequences. - or or is null. - - - - Merges elements from all of the specified observable sequences into a single observable sequence. - - The type of the elements in the source sequences. - Observable sequences. - The observable sequence that merges the elements of the observable sequences. - is null. - - - - Merges elements from all of the specified observable sequences into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources. - - The type of the elements in the source sequences. - Observable sequences. - Scheduler to run the enumeration of the sequence of sources on. - The observable sequence that merges the elements of the observable sequences. - or is null. - - - - Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence. - - The type of the elements in the source sequences. - Enumerable sequence of observable sequences. - The observable sequence that merges the elements of the observable sequences. - is null. - - - - Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence, using the specified scheduler for enumeration of and subscription to the sources. - - The type of the elements in the source sequences. - Enumerable sequence of observable sequences. - Scheduler to run the enumeration of the sequence of sources on. - The observable sequence that merges the elements of the observable sequences. - or is null. - - - - Concatenates the second observable sequence to the first observable sequence upon successful or exceptional termination of the first. - - The type of the elements in the source sequences. - First observable sequence whose exception (if any) is caught. - Second observable sequence used to produce results after the first sequence terminates. - An observable sequence that concatenates the first and second sequence, even if the first sequence terminates exceptionally. - or is null. - - - - Concatenates all of the specified observable sequences, even if the previous observable sequence terminated exceptionally. - - The type of the elements in the source sequences. - Observable sequences to concatenate. - An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally. - is null. - - - - Concatenates all observable sequences in the given enumerable sequence, even if the previous observable sequence terminated exceptionally. - - The type of the elements in the source sequences. - Observable sequences to concatenate. - An observable sequence that concatenates the source sequences, even if a sequence terminates exceptionally. - is null. - - - - Returns the elements from the source observable sequence only after the other observable sequence produces an element. - - The type of the elements in the source sequence. - The type of the elements in the other sequence that indicates the end of skip behavior. - Source sequence to propagate elements for. - Observable sequence that triggers propagation of elements of the source sequence. - An observable sequence containing the elements of the source sequence starting from the point the other sequence triggered propagation. - or is null. - - - - Transforms an observable sequence of observable sequences into an observable sequence - producing values only from the most recent observable sequence. - Each time a new inner observable sequence is received, unsubscribe from the - previous inner observable sequence. - - The type of the elements in the source sequences. - Observable sequence of inner observable sequences. - The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received. - is null. - - - - Transforms an observable sequence of tasks into an observable sequence - producing values only from the most recent observable sequence. - Each time a new task is received, the previous task's result is ignored. - - The type of the results produced by the source tasks. - Observable sequence of tasks. - The observable sequence that at any point in time produces the result of the most recent task that has been received. - is null. - If the tasks support cancellation, consider manual conversion of the tasks using , followed by a switch operation using . - - - - Returns the elements from the source observable sequence until the other observable sequence produces an element. - - The type of the elements in the source sequence. - The type of the elements in the other sequence that indicates the end of take behavior. - Source sequence to propagate elements for. - Observable sequence that terminates propagation of elements of the source sequence. - An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation. - or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping windows. - - The type of the elements in the source sequence, and in the windows in the result sequence. - The type of the elements in the sequences indicating window closing events. - Source sequence to produce windows over. - A function invoked to define the boundaries of the produced windows. A new window is started when the previous one is closed. - An observable sequence of windows. - or is null. - - - - Projects each element of an observable sequence into zero or more windows. - - The type of the elements in the source sequence, and in the windows in the result sequence. - The type of the elements in the sequence indicating window opening events, also passed to the closing selector to obtain a sequence of window closing events. - The type of the elements in the sequences indicating window closing events. - Source sequence to produce windows over. - Observable sequence whose elements denote the creation of new windows. - A function invoked to define the closing of each produced window. - An observable sequence of windows. - or or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping windows. - - The type of the elements in the source sequence, and in the windows in the result sequence. - The type of the elements in the sequences indicating window boundary events. - Source sequence to produce windows over. - Sequence of window boundary markers. The current window is closed and a new window is opened upon receiving a boundary marker. - An observable sequence of windows. - or is null. - - - - Merges two observable sequences into one observable sequence by combining each element from the first source with the latest element from the second source, if any. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Function to invoke for each element from the first source combined with the latest element from the second source, if any. - An observable sequence containing the result of combining each element of the first source with the latest element from the second source, if any, using the specified result selector function. - or or is null. - - - - Merges two observable sequences into one observable sequence by combining their elements in a pairwise fashion. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Function to invoke for each consecutive pair of elements from the first and second source. - An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function. - or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Fifteenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the first source sequence. - The type of the elements in the second source sequence. - The type of the elements in the third source sequence. - The type of the elements in the fourth source sequence. - The type of the elements in the fifth source sequence. - The type of the elements in the sixth source sequence. - The type of the elements in the seventh source sequence. - The type of the elements in the eighth source sequence. - The type of the elements in the ninth source sequence. - The type of the elements in the tenth source sequence. - The type of the elements in the eleventh source sequence. - The type of the elements in the twelfth source sequence. - The type of the elements in the thirteenth source sequence. - The type of the elements in the fourteenth source sequence. - The type of the elements in the fifteenth source sequence. - The type of the elements in the sixteenth source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second observable source. - Third observable source. - Fourth observable source. - Fifth observable source. - Sixth observable source. - Seventh observable source. - Eighth observable source. - Ninth observable source. - Tenth observable source. - Eleventh observable source. - Twelfth observable source. - Thirteenth observable source. - Fourteenth observable source. - Fifteenth observable source. - Sixteenth observable source. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or or or or or or or or or or or or or or or or is null. - - - - Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. - - The type of the elements in the source sequences. - The type of the elements in the result sequence, returned by the selector function. - Observable sources. - Function to invoke for each series of elements at corresponding indexes in the sources. - An observable sequence containing the result of combining elements of the sources using the specified result selector function. - or is null. - - - - Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes. - - The type of the elements in the source sequences, and in the lists in the result sequence. - Observable sources. - An observable sequence containing lists of elements at corresponding indexes. - is null. - - - - Merges the specified observable sequences into one observable sequence by emitting a list with the elements of the observable sequences at corresponding indexes. - - The type of the elements in the source sequences, and in the lists in the result sequence. - Observable sources. - An observable sequence containing lists of elements at corresponding indexes. - is null. - - - - Merges an observable sequence and an enumerable sequence into one observable sequence by using the selector function. - - The type of the elements in the first observable source sequence. - The type of the elements in the second enumerable source sequence. - The type of the elements in the result sequence, returned by the selector function. - First observable source. - Second enumerable source. - Function to invoke for each consecutive pair of elements from the first and second source. - An observable sequence containing the result of pairwise combining the elements of the first and second source using the specified result selector function. - or or is null. - - - - Hides the identity of an observable sequence. - - The type of the elements in the source sequence. - An observable sequence whose identity to hide. - An observable sequence that hides the identity of the source sequence. - is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on element count information. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - An observable sequence of buffers. - is null. - is less than or equal to zero. - - - - Projects each element of an observable sequence into zero or more buffers which are produced based on element count information. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - Number of elements to skip between creation of consecutive buffers. - An observable sequence of buffers. - is null. - or is less than or equal to zero. - - - - Dematerializes the explicit notification values of an observable sequence as implicit notifications. - - The type of the elements materialized in the source sequence notification objects. - An observable sequence containing explicit notification values which have to be turned into implicit notifications. - An observable sequence exhibiting the behavior corresponding to the source sequence's notification values. - is null. - - - - Returns an observable sequence that contains only distinct contiguous elements. - - The type of the elements in the source sequence. - An observable sequence to retain distinct contiguous elements for. - An observable sequence only containing the distinct contiguous elements from the source sequence. - is null. - - - - Returns an observable sequence that contains only distinct contiguous elements according to the comparer. - - The type of the elements in the source sequence. - An observable sequence to retain distinct contiguous elements for. - Equality comparer for source elements. - An observable sequence only containing the distinct contiguous elements from the source sequence. - or is null. - - - - Returns an observable sequence that contains only distinct contiguous elements according to the keySelector. - - The type of the elements in the source sequence. - The type of the discriminator key computed for each element in the source sequence. - An observable sequence to retain distinct contiguous elements for, based on a computed key value. - A function to compute the comparison key for each element. - An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence. - or is null. - - - - Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer. - - The type of the elements in the source sequence. - The type of the discriminator key computed for each element in the source sequence. - An observable sequence to retain distinct contiguous elements for, based on a computed key value. - A function to compute the comparison key for each element. - Equality comparer for computed key values. - An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence. - or or is null. - - - - Invokes an action for each element in the observable sequence, and propagates all observer messages through the result sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - The source sequence with the side-effecting behavior applied. - or is null. - - - - Invokes an action for each element in the observable sequence and invokes an action upon graceful termination of the observable sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - The source sequence with the side-effecting behavior applied. - or or is null. - - - - Invokes an action for each element in the observable sequence and invokes an action upon exceptional termination of the observable sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - The source sequence with the side-effecting behavior applied. - or or is null. - - - - Invokes an action for each element in the observable sequence and invokes an action upon graceful or exceptional termination of the observable sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke for each element in the observable sequence. - Action to invoke upon exceptional termination of the observable sequence. - Action to invoke upon graceful termination of the observable sequence. - The source sequence with the side-effecting behavior applied. - or or or is null. - - - - Invokes the observer's methods for each message in the source sequence. - This method can be used for debugging, logging, etc. of query behavior by intercepting the message stream to run arbitrary actions for messages on the pipeline. - - The type of the elements in the source sequence. - Source sequence. - Observer whose methods to invoke as part of the source sequence's observation. - The source sequence with the side-effecting behavior applied. - or is null. - - - - Invokes a specified action after the source observable sequence terminates gracefully or exceptionally. - - The type of the elements in the source sequence. - Source sequence. - Action to invoke after the source observable sequence terminates. - Source sequence with the action-invoking termination behavior applied. - or is null. - - - - Ignores all elements in an observable sequence leaving only the termination messages. - - The type of the elements in the source sequence. - Source sequence. - An empty observable sequence that signals termination, successful or exceptional, of the source sequence. - is null. - - - - Materializes the implicit notifications of an observable sequence as explicit notification values. - - The type of the elements in the source sequence. - An observable sequence to get notification values for. - An observable sequence containing the materialized notification values from the source sequence. - is null. - - - - Repeats the observable sequence indefinitely. - - The type of the elements in the source sequence. - Observable sequence to repeat. - The observable sequence producing the elements of the given sequence repeatedly and sequentially. - is null. - - - - Repeats the observable sequence a specified number of times. - - The type of the elements in the source sequence. - Observable sequence to repeat. - Number of times to repeat the sequence. - The observable sequence producing the elements of the given sequence repeatedly. - is null. - is less than zero. - - - - Repeats the source observable sequence until it successfully terminates. - - The type of the elements in the source sequence. - Observable sequence to repeat until it successfully terminates. - An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully. - is null. - - - - Repeats the source observable sequence the specified number of times or until it successfully terminates. - - The type of the elements in the source sequence. - Observable sequence to repeat until it successfully terminates. - Number of times to repeat the sequence. - An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully. - is null. - is less than zero. - - - - Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value. - For aggregation behavior with no intermediate results, see . - - The type of the elements in the source sequence. - The type of the result of the aggregation. - An observable sequence to accumulate over. - The initial accumulator value. - An accumulator function to be invoked on each element. - An observable sequence containing the accumulated values. - or is null. - - - - Applies an accumulator function over an observable sequence and returns each intermediate result. - For aggregation behavior with no intermediate results, see . - - The type of the elements in the source sequence and the result of the aggregation. - An observable sequence to accumulate over. - An accumulator function to be invoked on each element. - An observable sequence containing the accumulated values. - or is null. - - - - Bypasses a specified number of elements at the end of an observable sequence. - - The type of the elements in the source sequence. - Source sequence. - Number of elements to bypass at the end of the source sequence. - An observable sequence containing the source sequence elements except for the bypassed ones at the end. - is null. - is less than zero. - - This operator accumulates a queue with a length enough to store the first elements. As more elements are - received, elements are taken from the front of the queue and produced on the result sequence. This causes elements to be delayed. - - - - - Prepends a sequence of values to an observable sequence. - - The type of the elements in the source sequence. - Source sequence to prepend values to. - Values to prepend to the specified sequence. - The source sequence prepended with the specified values. - or is null. - - - - Prepends a sequence of values to an observable sequence. - - The type of the elements in the source sequence. - Source sequence to prepend values to. - Values to prepend to the specified sequence. - The source sequence prepended with the specified values. - or is null. - - - - Prepends a sequence of values to an observable sequence. - - The type of the elements in the source sequence. - Source sequence to prepend values to. - Scheduler to emit the prepended values on. - Values to prepend to the specified sequence. - The source sequence prepended with the specified values. - or or is null. - - - - Prepends a sequence of values to an observable sequence. - - The type of the elements in the source sequence. - Source sequence to prepend values to. - Scheduler to emit the prepended values on. - Values to prepend to the specified sequence. - The source sequence prepended with the specified values. - or or is null. - - - - Returns a specified number of contiguous elements from the end of an observable sequence. - - The type of the elements in the source sequence. - Source sequence. - Number of elements to take from the end of the source sequence. - An observable sequence containing the specified number of elements from the end of the source sequence. - is null. - is less than zero. - - This operator accumulates a buffer with a length enough to store elements elements. Upon completion of - the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed. - - - - - Returns a specified number of contiguous elements from the end of an observable sequence, using the specified scheduler to drain the queue. - - The type of the elements in the source sequence. - Source sequence. - Number of elements to take from the end of the source sequence. - Scheduler used to drain the queue upon completion of the source sequence. - An observable sequence containing the specified number of elements from the end of the source sequence. - or is null. - is less than zero. - - This operator accumulates a buffer with a length enough to store elements elements. Upon completion of - the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed. - - - - - Returns a list with the specified number of contiguous elements from the end of an observable sequence. - - The type of the elements in the source sequence. - Source sequence. - Number of elements to take from the end of the source sequence. - An observable sequence containing a single list with the specified number of elements from the end of the source sequence. - is null. - is less than zero. - - This operator accumulates a buffer with a length enough to store elements. Upon completion of the - source sequence, this buffer is produced on the result sequence. - - - - - Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on element count information. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - An observable sequence of windows. - is null. - is less than or equal to zero. - - - - Projects each element of an observable sequence into zero or more windows which are produced based on element count information. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - Number of elements to skip between creation of consecutive windows. - An observable sequence of windows. - is null. - or is less than or equal to zero. - - - - Converts the elements of an observable sequence to the specified type. - - The type to convert the elements in the source sequence to. - The observable sequence that contains the elements to be converted. - An observable sequence that contains each element of the source sequence converted to the specified type. - is null. - - - - Returns the elements of the specified sequence or the type parameter's default value in a singleton sequence if the sequence is empty. - - The type of the elements in the source sequence (if any), whose default value will be taken if the sequence is empty. - The sequence to return a default value for if it is empty. - An observable sequence that contains the default value for the TSource type if the source is empty; otherwise, the elements of the source itself. - is null. - - - - Returns the elements of the specified sequence or the specified value in a singleton sequence if the sequence is empty. - - The type of the elements in the source sequence (if any), and the specified default value which will be taken if the sequence is empty. - The sequence to return the specified value for if it is empty. - The value to return if the sequence is empty. - An observable sequence that contains the specified default value if the source is empty; otherwise, the elements of the source itself. - is null. - - - - Returns an observable sequence that contains only distinct elements. - - The type of the elements in the source sequence. - An observable sequence to retain distinct elements for. - An observable sequence only containing the distinct elements from the source sequence. - is null. - Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. - - - - Returns an observable sequence that contains only distinct elements according to the comparer. - - The type of the elements in the source sequence. - An observable sequence to retain distinct elements for. - Equality comparer for source elements. - An observable sequence only containing the distinct elements from the source sequence. - or is null. - Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. - - - - Returns an observable sequence that contains only distinct elements according to the keySelector. - - The type of the elements in the source sequence. - The type of the discriminator key computed for each element in the source sequence. - An observable sequence to retain distinct elements for. - A function to compute the comparison key for each element. - An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence. - or is null. - Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. - - - - Returns an observable sequence that contains only distinct elements according to the keySelector and the comparer. - - The type of the elements in the source sequence. - The type of the discriminator key computed for each element in the source sequence. - An observable sequence to retain distinct elements for. - A function to compute the comparison key for each element. - Equality comparer for source elements. - An observable sequence only containing the distinct elements, based on a computed key value, from the source sequence. - or or is null. - Usage of this operator should be considered carefully due to the maintenance of an internal lookup structure which can grow large. - - - - Groups the elements of an observable sequence according to a specified key selector function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function and comparer. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - An equality comparer to compare keys with. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or is null. - - - - Groups the elements of an observable sequence and selects the resulting elements by using a specified function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - An equality comparer to compare keys with. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or or is null. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - The initial number of elements that the underlying dictionary can contain. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - The initial number of elements that the underlying dictionary can contain. - An equality comparer to compare keys with. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity and selects the resulting elements by using a specified function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - The initial number of elements that the underlying dictionary can contain. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer and selects the resulting elements by using a specified function. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - The initial number of elements that the underlying dictionary can contain. - An equality comparer to compare keys with. - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - or or or is null. - is less than 0. - - - - Groups the elements of an observable sequence according to a specified key selector function and comparer and selects the resulting elements by using a specified function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A function to signal the expiration of a group. - An equality comparer to compare keys with. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered. - - or or or or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function and selects the resulting elements by using a specified function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A function to signal the expiration of a group. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function and comparer. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to signal the expiration of a group. - An equality comparer to compare keys with. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or or is null. - - - - Groups the elements of an observable sequence according to a specified key selector function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to signal the expiration of a group. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or is null. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer and selects the resulting elements by using a specified function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A function to signal the expiration of a group. - The initial number of elements that the underlying dictionary can contain. - An equality comparer to compare keys with. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encountered. - - or or or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and selects the resulting elements by using a specified function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements within the groups computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to map each source element to an element in an observable group. - A function to signal the expiration of a group. - The initial number of elements that the underlying dictionary can contain. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function and comparer. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to signal the expiration of a group. - The initial number of elements that the underlying dictionary can contain. - An equality comparer to compare keys with. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or or is null. - is less than 0. - - - - Groups the elements of an observable sequence with the specified initial capacity according to a specified key selector function. - A duration selector function is used to control the lifetime of groups. When a group expires, it receives an OnCompleted notification. When a new element with the same - key value as a reclaimed group occurs, the group will be reborn with a new lifetime request. - - The type of the elements in the source sequence. - The type of the grouping key computed for each element in the source sequence. - The type of the elements in the duration sequences obtained for each group to denote its lifetime. - An observable sequence whose elements to group. - A function to extract the key for each element. - A function to signal the expiration of a group. - The initial number of elements that the underlying dictionary can contain. - - A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. - If a group's lifetime expires, a new group with the same key value can be created once an element with such a key value is encoutered. - - or or is null. - is less than 0. - - - - Correlates the elements of two sequences based on overlapping durations, and groups the results. - - The type of the elements in the left source sequence. - The type of the elements in the right source sequence. - The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence. - The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence. - The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration. - The left observable sequence to join elements for. - The right observable sequence to join elements for. - A function to select the duration of each element of the left observable sequence, used to determine overlap. - A function to select the duration of each element of the right observable sequence, used to determine overlap. - A function invoked to compute a result element for any element of the left sequence with overlapping elements from the right observable sequence. - An observable sequence that contains result elements computed from source elements that have an overlapping duration. - or or or or is null. - - - - Correlates the elements of two sequences based on overlapping durations. - - The type of the elements in the left source sequence. - The type of the elements in the right source sequence. - The type of the elements in the duration sequence denoting the computed duration of each element in the left source sequence. - The type of the elements in the duration sequence denoting the computed duration of each element in the right source sequence. - The type of the elements in the result sequence, obtained by invoking the result selector function for source elements with overlapping duration. - The left observable sequence to join elements for. - The right observable sequence to join elements for. - A function to select the duration of each element of the left observable sequence, used to determine overlap. - A function to select the duration of each element of the right observable sequence, used to determine overlap. - A function invoked to compute a result element for any two overlapping elements of the left and right observable sequences. - An observable sequence that contains result elements computed from source elements that have an overlapping duration. - or or or or is null. - - - - Filters the elements of an observable sequence based on the specified type. - - The type to filter the elements in the source sequence on. - The observable sequence that contains the elements to be filtered. - An observable sequence that contains elements from the input sequence of type TResult. - is null. - - - - Projects each element of an observable sequence into a new form. - - The type of the elements in the source sequence. - The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence. - A sequence of elements to invoke a transform function on. - A transform function to apply to each source element. - An observable sequence whose elements are the result of invoking the transform function on each element of source. - or is null. - - - - Projects each element of an observable sequence into a new form by incorporating the element's index. - - The type of the elements in the source sequence. - The type of the elements in the result sequence, obtained by running the selector function for each element in the source sequence. - A sequence of elements to invoke a transform function on. - A transform function to apply to each source element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of invoking the transform function on each element of source. - or is null. - - - - Projects each element of the source observable sequence to the other observable sequence and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the other sequence and the elements in the result sequence. - An observable sequence of elements to project. - An observable sequence to project each element from the source sequence onto. - An observable sequence whose elements are the result of projecting each source element onto the other sequence and merging all the resulting sequences together. - or is null. - - - - Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner sequences and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element. - An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. - or is null. - - - - Projects each element of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner sequences and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. - or is null. - - - - Projects each element of an observable sequence to a task and merges all of the task results into one observable sequence. - - The type of the elements in the source sequence. - The type of the result produced by the projected tasks and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element. - An observable sequence whose elements are the result of the tasks executed for each element of the input sequence. - This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - or is null. - - - - Projects each element of an observable sequence to a task by incorporating the element's index and merges all of the task results into one observable sequence. - - The type of the elements in the source sequence. - The type of the result produced by the projected tasks and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of the tasks executed for each element of the input sequence. - This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - or is null. - - - - Projects each element of an observable sequence to a task with cancellation support and merges all of the task results into one observable sequence. - - The type of the elements in the source sequence. - The type of the result produced by the projected tasks and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element. - An observable sequence whose elements are the result of the tasks executed for each element of the input sequence. - This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - or is null. - - - - Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support and merges all of the task results into one observable sequence. - - The type of the elements in the source sequence. - The type of the result produced by the projected tasks and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of the tasks executed for each element of the input sequence. - This overload supports composition of observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - or is null. - - - - Projects each element of an observable sequence to an observable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected intermediate sequences. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements. - An observable sequence of elements to project. - A transform function to apply to each element. - A transform function to apply to each element of the intermediate sequence. - An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. - or or is null. - - - - Projects each element of an observable sequence to an observable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected intermediate sequences. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element. - An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. - or or is null. - - - - Projects each element of an observable sequence to a task, invokes the result selector for the source element and the task result, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the results produced by the projected intermediate tasks. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results. - An observable sequence of elements to project. - A transform function to apply to each element. - A transform function to apply to each element of the intermediate sequence. - An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element. - or or is null. - This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - - - - Projects each element of an observable sequence to a task by incorporating the element's index, invokes the result selector for the source element and the task result, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the results produced by the projected intermediate tasks. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element. - or or is null. - This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - - - - Projects each element of an observable sequence to a task with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the results produced by the projected intermediate tasks. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results. - An observable sequence of elements to project. - A transform function to apply to each element. - A transform function to apply to each element of the intermediate sequence. - An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element. - or or is null. - This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - - - - Projects each element of an observable sequence to a task by incorporating the element's index with cancellation support, invokes the result selector for the source element and the task result, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the results produced by the projected intermediate tasks. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate task results. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of obtaining a task for each element of the input sequence and then mapping the task's result and its corresponding source element to a result element. - or or is null. - This overload supports using LINQ query comprehension syntax in C# and Visual Basic to compose observable sequences and tasks, without requiring manual conversion of the tasks to observable sequences using . - - - - Projects each notification of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner sequences and the elements in the merged result sequence. - An observable sequence of notifications to project. - A transform function to apply to each element. - A transform function to apply when an error occurs in the source sequence. - A transform function to apply when the end of the source sequence is reached. - An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence. - or or or is null. - - - - Projects each notification of an observable sequence to an observable sequence by incorporating the element's index and merges the resulting observable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner sequences and the elements in the merged result sequence. - An observable sequence of notifications to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply when an error occurs in the source sequence. - A transform function to apply when the end of the source sequence is reached. - An observable sequence whose elements are the result of invoking the one-to-many transform function corresponding to each notification in the input sequence. - or or or is null. - - - - Projects each element of an observable sequence to an enumerable sequence and concatenates the resulting enumerable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element. - An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. - or is null. - The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion. - - - - Projects each element of an observable sequence to an enumerable sequence by incorporating the element's index and concatenates the resulting enumerable sequences into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected inner enumerable sequences and the elements in the merged result sequence. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. - or is null. - The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion. - - - - Projects each element of an observable sequence to an enumerable sequence, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected intermediate enumerable sequences. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements. - An observable sequence of elements to project. - A transform function to apply to each element. - A transform function to apply to each element of the intermediate sequence. - An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. - or or is null. - The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion. - - - - Projects each element of an observable sequence to an enumerable sequence by incorporating the element's index, invokes the result selector for the source element and each of the corresponding inner sequence's elements, and merges the results into one observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the projected intermediate enumerable sequences. - The type of the elements in the result sequence, obtained by using the selector to combine source sequence elements with their corresponding intermediate sequence elements. - An observable sequence of elements to project. - A transform function to apply to each element; the second parameter of the function represents the index of the source element. - A transform function to apply to each element of the intermediate sequence; the second parameter of the function represents the index of the source element and the fourth parameter represents the index of the intermediate element. - An observable sequence whose elements are the result of invoking the one-to-many transform function collectionSelector on each element of the input sequence and then mapping each of those sequence elements and their corresponding source element to a result element. - or or is null. - The projected sequences are enumerated synchonously within the OnNext call of the source sequence. In order to do a concurrent, non-blocking merge, change the selector to return an observable sequence obtained using the conversion. - - - - Bypasses a specified number of elements in an observable sequence and then returns the remaining elements. - - The type of the elements in the source sequence. - The sequence to take elements from. - The number of elements to skip before returning the remaining elements. - An observable sequence that contains the elements that occur after the specified index in the input sequence. - is null. - is less than zero. - - - - Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements. - - The type of the elements in the source sequence. - An observable sequence to return elements from. - A function to test each element for a condition. - An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate. - or is null. - - - - Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements. - The element's index is used in the logic of the predicate function. - - The type of the elements in the source sequence. - An observable sequence to return elements from. - A function to test each element for a condition; the second parameter of the function represents the index of the source element. - An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate. - or is null. - - - - Returns a specified number of contiguous elements from the start of an observable sequence. - - The type of the elements in the source sequence. - The sequence to take elements from. - The number of elements to return. - An observable sequence that contains the specified number of elements from the start of the input sequence. - is null. - is less than zero. - - - - Returns a specified number of contiguous elements from the start of an observable sequence, using the specified scheduler for the edge case of Take(0). - - The type of the elements in the source sequence. - The sequence to take elements from. - The number of elements to return. - Scheduler used to produce an OnCompleted message in case count is set to 0. - An observable sequence that contains the specified number of elements from the start of the input sequence. - or is null. - is less than zero. - - - - Returns elements from an observable sequence as long as a specified condition is true. - - The type of the elements in the source sequence. - A sequence to return elements from. - A function to test each element for a condition. - An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes. - or is null. - - - - Returns elements from an observable sequence as long as a specified condition is true. - The element's index is used in the logic of the predicate function. - - The type of the elements in the source sequence. - A sequence to return elements from. - A function to test each element for a condition; the second parameter of the function represents the index of the source element. - An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes. - or is null. - - - - Filters the elements of an observable sequence based on a predicate. - - The type of the elements in the source sequence. - An observable sequence whose elements to filter. - A function to test each source element for a condition. - An observable sequence that contains elements from the input sequence that satisfy the condition. - or is null. - - - - Filters the elements of an observable sequence based on a predicate by incorporating the element's index. - - The type of the elements in the source sequence. - An observable sequence whose elements to filter. - A function to test each source element for a conditio; the second parameter of the function represents the index of the source element. - An observable sequence that contains elements from the input sequence that satisfy the condition. - or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - An observable sequence of buffers. - is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into consecutive non-overlapping buffers which are produced based on timing information, using the specified scheduler to run timers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - Scheduler to run buffering timers on. - An observable sequence of buffers. - or is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into zero or more buffers which are produced based on timing information. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - Interval between creation of consecutive buffers. - An observable sequence of buffers. - is null. - or is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration - length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the - current buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler, - where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - - Projects each element of an observable sequence into zero or more buffers which are produced based on timing information, using the specified scheduler to run timers. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Length of each buffer. - Interval between creation of consecutive buffers. - Scheduler to run buffering timers on. - An observable sequence of buffers. - or is null. - or is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers with minimum duration - length. However, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the - current buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - However, this doesn't mean all buffers will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler, - where the action to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - - Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed. - A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Maximum time length of a window. - Maximum element count of a window. - An observable sequence of buffers. - is null. - is less than TimeSpan.Zero. -or- is less than or equal to zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers. - A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. - - The type of the elements in the source sequence, and in the lists in the result sequence. - Source sequence to produce buffers over. - Maximum time length of a buffer. - Maximum element count of a buffer. - Scheduler to run buffering timers on. - An observable sequence of buffers. - or is null. - is less than TimeSpan.Zero. -or- is less than or equal to zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create buffers as fast as it can. - Because all source sequence elements end up in one of the buffers, some buffers won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current buffer and to create a new buffer may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Time shifts the observable sequence by the specified relative time duration. - The relative time intervals between the values are preserved. - - The type of the elements in the source sequence. - Source sequence to delay values for. - Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible. - Time-shifted sequence. - is null. - is less than TimeSpan.Zero. - - - This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors. - - - Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription. - - - - - - Time shifts the observable sequence by the specified relative time duration, using the specified scheduler to run timers. - The relative time intervals between the values are preserved. - - The type of the elements in the source sequence. - Source sequence to delay values for. - Relative time by which to shift the observable sequence. If this value is equal to TimeSpan.Zero, the scheduler will dispatch observer callbacks as soon as possible. - Scheduler to run the delay timers on. - Time-shifted sequence. - or is null. - is less than TimeSpan.Zero. - - - This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors. - - - Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription. - - - - - - Time shifts the observable sequence to start propagating notifications at the specified absolute time. - The relative time intervals between the values are preserved. - - The type of the elements in the source sequence. - Source sequence to delay values for. - Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible. - Time-shifted sequence. - is null. - - - This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors. - - - Observer callbacks for the resulting sequence will be run on the default scheduler. This effect is similar to using ObserveOn. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription. - - - - - - Time shifts the observable sequence to start propagating notifications at the specified absolute time, using the specified scheduler to run timers. - The relative time intervals between the values are preserved. - - The type of the elements in the source sequence. - Source sequence to delay values for. - Absolute time used to shift the observable sequence; the relative time shift gets computed upon subscription. If this value is less than or equal to DateTimeOffset.UtcNow, the scheduler will dispatch observer callbacks as soon as possible. - Scheduler to run the delay timers on. - Time-shifted sequence. - or is null. - - - This operator is less efficient than DelaySubscription because it records all notifications and time-delays those. This allows for immediate propagation of errors. - - - Observer callbacks for the resulting sequence will be run on the specified scheduler. This effect is similar to using ObserveOn. - - - Exceptions signaled by the source sequence through an OnError callback are forwarded immediately to the result sequence. Any OnNext notifications that were in the queue at the point of the OnError callback will be dropped. - In order to delay error propagation, consider using the Observable.Materialize and Observable.Dematerialize operators, or use DelaySubscription. - - - - - - Time shifts the observable sequence based on a delay selector function for each element. - - The type of the elements in the source sequence. - The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence. - Source sequence to delay values for. - Selector function to retrieve a sequence indicating the delay for each given element. - Time-shifted sequence. - or is null. - - - - Time shifts the observable sequence based on a subscription delay and a delay selector function for each element. - - The type of the elements in the source sequence. - The type of the elements in the delay sequences used to denote the delay duration of each element in the source sequence. - Source sequence to delay values for. - Sequence indicating the delay for the subscription to the source. - Selector function to retrieve a sequence indicating the delay for each given element. - Time-shifted sequence. - or or is null. - - - - Time shifts the observable sequence by delaying the subscription with the specified relative time duration. - - The type of the elements in the source sequence. - Source sequence to delay subscription for. - Relative time shift of the subscription. - Time-shifted sequence. - is null. - is less than TimeSpan.Zero. - - - This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing. - - - The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected. - - - - - - Time shifts the observable sequence by delaying the subscription with the specified relative time duration, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to delay subscription for. - Relative time shift of the subscription. - Scheduler to run the subscription delay timer on. - Time-shifted sequence. - or is null. - is less than TimeSpan.Zero. - - - This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing. - - - The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected. - - - - - - Time shifts the observable sequence by delaying the subscription to the specified absolute time. - - The type of the elements in the source sequence. - Source sequence to delay subscription for. - Absolute time to perform the subscription at. - Time-shifted sequence. - is null. - - - This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing. - - - The side-effects of subscribing to the source sequence will be run on the default scheduler. Observer callbacks will not be affected. - - - - - - Time shifts the observable sequence by delaying the subscription to the specified absolute time, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to delay subscription for. - Absolute time to perform the subscription at. - Scheduler to run the subscription delay timer on. - Time-shifted sequence. - or is null. - - - This operator is more efficient than Delay but postpones all side-effects of subscription and affects error propagation timing. - - - The side-effects of subscribing to the source sequence will be run on the specified scheduler. Observer callbacks will not be affected. - - - - - - Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Time selector function to control the speed of values being produced each iteration. - The generated sequence. - or or or is null. - - - - Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Time selector function to control the speed of values being produced each iteration. - Scheduler on which to run the generator loop. - The generated sequence. - or or or or is null. - - - - Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Time selector function to control the speed of values being produced each iteration. - The generated sequence. - or or or is null. - - - - Generates an observable sequence by running a state-driven and temporal loop producing the sequence's elements, using the specified scheduler to run timers and to send out observer messages. - - The type of the state used in the generator loop. - The type of the elements in the produced sequence. - Initial state. - Condition to terminate generation (upon returning false). - Iteration step function. - Selector function for results produced in the sequence. - Time selector function to control the speed of values being produced each iteration. - Scheduler on which to run the generator loop. - The generated sequence. - or or or or is null. - - - - Returns an observable sequence that produces a value after each period. - - Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - An observable sequence that produces a value after each period. - is less than TimeSpan.Zero. - - Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification. - If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the - current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the - - operator instead. - - - - - Returns an observable sequence that produces a value after each period, using the specified scheduler to run timers and to send out observer messages. - - Period for producing the values in the resulting sequence. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - Scheduler to run the timer on. - An observable sequence that produces a value after each period. - is less than TimeSpan.Zero. - is null. - - Intervals are measured between the start of subsequent notifications, not between the end of the previous and the start of the next notification. - If the observer takes longer than the interval period to handle the message, the subsequent notification will be delivered immediately after the - current one has been handled. In case you need to control the time between the end and the start of consecutive notifications, consider using the - - operator instead. - - - - - Samples the observable sequence at each interval. - Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence. - - The type of the elements in the source sequence. - Source sequence to sample. - Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream. - Sampled observable sequence. - is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect - of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Samples the observable sequence at each interval, using the specified scheduler to run sampling timers. - Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence. - - The type of the elements in the source sequence. - Source sequence to sample. - Interval at which to sample. If this value is equal to TimeSpan.Zero, the scheduler will continuously sample the stream. - Scheduler to run the sampling timer on. - Sampled observable sequence. - or is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for doesn't guarantee all source sequence elements will be preserved. This is a side-effect - of the asynchrony introduced by the scheduler, where the sampling action may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Samples the source observable sequence using a samper observable sequence producing sampling ticks. - Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence. - - The type of the elements in the source sequence. - The type of the elements in the sampling sequence. - Source sequence to sample. - Sampling tick sequence. - Sampled observable sequence. - or is null. - - - - Skips elements for the specified duration from the start of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Duration for skipping elements from the start of the sequence. - An observable sequence with the elements skipped during the specified duration from the start of the source sequence. - is null. - is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence. - This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded - may not execute immediately, despite the TimeSpan.Zero due time. - - - Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the . - - - - - - Skips elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Duration for skipping elements from the start of the sequence. - Scheduler to run the timer on. - An observable sequence with the elements skipped during the specified duration from the start of the source sequence. - or is null. - is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for doesn't guarantee no elements will be dropped from the start of the source sequence. - This is a side-effect of the asynchrony introduced by the scheduler, where the action that causes callbacks from the source sequence to be forwarded - may not execute immediately, despite the TimeSpan.Zero due time. - - - Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the . - - - - - - Skips elements for the specified duration from the end of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Duration for skipping elements from the end of the sequence. - An observable sequence with the elements skipped during the specified duration from the end of the source sequence. - is null. - is less than TimeSpan.Zero. - - This operator accumulates a queue with a length enough to store elements received during the initial window. - As more elements are received, elements older than the specified are taken from the queue and produced on the - result sequence. This causes elements to be delayed with . - - - - - Skips elements for the specified duration from the end of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Duration for skipping elements from the end of the sequence. - Scheduler to run the timer on. - An observable sequence with the elements skipped during the specified duration from the end of the source sequence. - or is null. - is less than TimeSpan.Zero. - - This operator accumulates a queue with a length enough to store elements received during the initial window. - As more elements are received, elements older than the specified are taken from the queue and produced on the - result sequence. This causes elements to be delayed with . - - - - - Skips elements from the observable source sequence until the specified start time. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped. - An observable sequence with the elements skipped until the specified start time. - is null. - - Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the . - - - - - Skips elements from the observable source sequence until the specified start time, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to skip elements for. - Time to start taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, no elements will be skipped. - Scheduler to run the timer on. - An observable sequence with the elements skipped until the specified start time. - or is null. - - Errors produced by the source sequence are always forwarded to the result sequence, even if the error occurs before the . - - - - - Takes elements for the specified duration from the start of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the start of the sequence. - An observable sequence with the elements taken during the specified duration from the start of the source sequence. - is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect - of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute - immediately, despite the TimeSpan.Zero due time. - - - - - Takes elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the start of the sequence. - Scheduler to run the timer on. - An observable sequence with the elements taken during the specified duration from the start of the source sequence. - or is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for doesn't guarantee an empty sequence will be returned. This is a side-effect - of the asynchrony introduced by the scheduler, where the action that stops forwarding callbacks from the source sequence may not execute - immediately, despite the TimeSpan.Zero due time. - - - - - Returns elements within the specified duration from the end of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - An observable sequence with the elements taken during the specified duration from the end of the source sequence. - is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements - to be delayed with . - - - - - Returns elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - Scheduler to run the timer on. - An observable sequence with the elements taken during the specified duration from the end of the source sequence. - or is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements - to be delayed with . - - - - - Returns elements within the specified duration from the end of the observable source sequence, using the specified schedulers to run timers and to drain the collected elements. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - Scheduler to run the timer on. - Scheduler to drain the collected elements. - An observable sequence with the elements taken during the specified duration from the end of the source sequence. - or or is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the result elements - to be delayed with . - - - - - Returns a list with the elements within the specified duration from the end of the observable source sequence. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence. - is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence. - - - - - Returns a list with the elements within the specified duration from the end of the observable source sequence, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Duration for taking elements from the end of the sequence. - Scheduler to run the timer on. - An observable sequence containing a single list with the elements taken during the specified duration from the end of the source sequence. - or is null. - is less than TimeSpan.Zero. - - This operator accumulates a buffer with a length enough to store elements for any window during the lifetime of - the source sequence. Upon completion of the source sequence, this buffer is produced on the result sequence. - - - - - Takes elements for the specified duration until the specified end time. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately. - An observable sequence with the elements taken until the specified end time. - is null. - - - - Takes elements for the specified duration until the specified end time, using the specified scheduler to run timers. - - The type of the elements in the source sequence. - Source sequence to take elements from. - Time to stop taking elements from the source sequence. If this value is less than or equal to DateTimeOffset.UtcNow, the result stream will complete immediately. - Scheduler to run the timer on. - An observable sequence with the elements taken until the specified end time. - or is null. - - - - Ignores elements from an observable sequence which are followed by another element within a specified relative time duration. - - The type of the elements in the source sequence. - Source sequence to throttle. - Throttling duration for each element. - The throttled sequence. - is null. - is less than TimeSpan.Zero. - - - This operator throttles the source sequence by holding on to each element for the duration specified in . If another - element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole - process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't - produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the - Observable.Sample set of operators. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled - that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the - asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero - due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action. - - - - - - Ignores elements from an observable sequence which are followed by another element within a specified relative time duration, using the specified scheduler to run throttling timers. - - The type of the elements in the source sequence. - Source sequence to throttle. - Throttling duration for each element. - Scheduler to run the throttle timers on. - The throttled sequence. - or is null. - is less than TimeSpan.Zero. - - - This operator throttles the source sequence by holding on to each element for the duration specified in . If another - element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this whole - process. For streams that never have gaps larger than or equal to between elements, the resulting stream won't - produce any elements. In order to reduce the volume of a stream whilst guaranteeing the periodic production of elements, consider using the - Observable.Sample set of operators. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing throttling timers to be scheduled - that are due immediately. However, this doesn't guarantee all elements will be retained in the result sequence. This is a side-effect of the - asynchrony introduced by the scheduler, where the action to forward the current element may not execute immediately, despite the TimeSpan.Zero - due time. In such cases, the next element may arrive before the scheduler gets a chance to run the throttling action. - - - - - - Ignores elements from an observable sequence which are followed by another value within a computed throttle duration. - - The type of the elements in the source sequence. - The type of the elements in the throttle sequences selected for each element in the source sequence. - Source sequence to throttle. - Selector function to retrieve a sequence indicating the throttle duration for each given element. - The throttled sequence. - or is null. - - This operator throttles the source sequence by holding on to each element for the duration denoted by . - If another element is produced within this time window, the element is dropped and a new timer is started for the current element, repeating this - whole process. For streams where the duration computed by applying the to each element overlaps with - the occurrence of the successor element, the resulting stream won't produce any elements. In order to reduce the volume of a stream whilst - guaranteeing the periodic production of elements, consider using the Observable.Sample set of operators. - - - - - Records the time interval between consecutive elements in an observable sequence. - - The type of the elements in the source sequence. - Source sequence to record time intervals for. - An observable sequence with time interval information on elements. - is null. - - - - Records the time interval between consecutive elements in an observable sequence, using the specified scheduler to compute time intervals. - - The type of the elements in the source sequence. - Source sequence to record time intervals for. - Scheduler used to compute time intervals. - An observable sequence with time interval information on elements. - or is null. - - - - Applies a timeout policy for each element in the observable sequence. - If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - Source sequence to perform a timeout for. - Maximum duration between values before a timeout occurs. - The source sequence with a TimeoutException in case of a timeout. - is null. - is less than TimeSpan.Zero. - (Asynchronous) If no element is produced within from the previous element. - - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due - immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the - scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may - arrive before the scheduler gets a chance to run the timeout action. - - - - - - Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers. - If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - Source sequence to perform a timeout for. - Maximum duration between values before a timeout occurs. - Scheduler to run the timeout timers on. - The source sequence with a TimeoutException in case of a timeout. - or is null. - is less than TimeSpan.Zero. - (Asynchronous) If no element is produced within from the previous element. - - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due - immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the - scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may - arrive before the scheduler gets a chance to run the timeout action. - - - - - - Applies a timeout policy for each element in the observable sequence. - If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - Source sequence to perform a timeout for. - Maximum duration between values before a timeout occurs. - Sequence to return in case of a timeout. - The source sequence switching to the other sequence in case of a timeout. - or is null. - is less than TimeSpan.Zero. - - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due - immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the - scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may - arrive before the scheduler gets a chance to run the timeout action. - - - - - - Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers. - If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - Source sequence to perform a timeout for. - Maximum duration between values before a timeout occurs. - Sequence to return in case of a timeout. - Scheduler to run the timeout timers on. - The source sequence switching to the other sequence in case of a timeout. - or or is null. - is less than TimeSpan.Zero. - - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing timeout timers to be scheduled that are due - immediately. However, this doesn't guarantee a timeout will occur, even for the first element. This is a side-effect of the asynchrony introduced by the - scheduler, where the action to propagate a timeout may not execute immediately, despite the TimeSpan.Zero due time. In such cases, the next element may - arrive before the scheduler gets a chance to run the timeout action. - - - - - - Applies a timeout policy to the observable sequence based on an absolute time. - If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - Source sequence to perform a timeout for. - Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately. - The source sequence with a TimeoutException in case of a timeout. - is null. - (Asynchronous) If the sequence hasn't terminated before . - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - - - Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers. - If the sequence doesn't terminate before the specified absolute due time, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - Source sequence to perform a timeout for. - Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately. - Scheduler to run the timeout timers on. - The source sequence with a TimeoutException in case of a timeout. - or is null. - (Asynchronous) If the sequence hasn't terminated before . - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - - - Applies a timeout policy to the observable sequence based on an absolute time. - If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - Source sequence to perform a timeout for. - Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately. - Sequence to return in case of a timeout. - The source sequence switching to the other sequence in case of a timeout. - or is null. - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - - - Applies a timeout policy to the observable sequence based on an absolute time, using the specified scheduler to run timeout timers. - If the sequence doesn't terminate before the specified absolute due time, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - Source sequence to perform a timeout for. - Time when a timeout occurs. If this value is less than or equal to DateTimeOffset.UtcNow, the timeout occurs immediately. - Sequence to return in case of a timeout. - Scheduler to run the timeout timers on. - The source sequence switching to the other sequence in case of a timeout. - or or is null. - - In case you only want to timeout on the first element, consider using the - operator applied to the source sequence and a delayed sequence. Alternatively, the general-purpose overload - of Timeout, can be used. - - - - - Applies a timeout policy to the observable sequence based on a timeout duration computed for each element. - If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence. - Source sequence to perform a timeout for. - Selector to retrieve an observable sequence that represents the timeout between the current element and the next element. - The source sequence with a TimeoutException in case of a timeout. - or is null. - - - - Applies a timeout policy to the observable sequence based on a timeout duration computed for each element. - If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence. - Source sequence to perform a timeout for. - Selector to retrieve an observable sequence that represents the timeout between the current element and the next element. - Sequence to return in case of a timeout. - The source sequence switching to the other sequence in case of a timeout. - or or is null. - - - - Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element. - If the next element isn't received within the computed duration starting from its predecessor, a TimeoutException is propagated to the observer. - - The type of the elements in the source sequence. - The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence. - Source sequence to perform a timeout for. - Observable sequence that represents the timeout for the first element. - Selector to retrieve an observable sequence that represents the timeout between the current element and the next element. - The source sequence with a TimeoutException in case of a timeout. - or or is null. - - - - Applies a timeout policy to the observable sequence based on an initial timeout duration for the first element, and a timeout duration computed for each subsequent element. - If the next element isn't received within the computed duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. - - The type of the elements in the source sequence and the other sequence used upon a timeout. - The type of the elements in the timeout sequences used to indicate the timeout duration for each element in the source sequence. - Source sequence to perform a timeout for. - Observable sequence that represents the timeout for the first element. - Selector to retrieve an observable sequence that represents the timeout between the current element and the next element. - Sequence to return in case of a timeout. - The source sequence switching to the other sequence in case of a timeout. - or or or is null. - - - - Returns an observable sequence that produces a single value after the specified relative due time has elapsed. - - Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible. - An observable sequence that produces a value after the due time has elapsed. - - - - Returns an observable sequence that produces a single value at the specified absolute due time. - - Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible. - An observable sequence that produces a value at due time. - - - - Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed. - - Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible. - Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - An observable sequence that produces a value after due time has elapsed and then after each period. - is less than TimeSpan.Zero. - - - - Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time. - - Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible. - Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - An observable sequence that produces a value at due time and then after each period. - is less than TimeSpan.Zero. - - - - Returns an observable sequence that produces a single value after the specified relative due time has elapsed, using the specified scheduler to run the timer. - - Relative time at which to produce the value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible. - Scheduler to run the timer on. - An observable sequence that produces a value after the due time has elapsed. - is null. - - - - Returns an observable sequence that produces a single value at the specified absolute due time, using the specified scheduler to run the timer. - - Absolute time at which to produce the value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible. - Scheduler to run the timer on. - An observable sequence that produces a value at due time. - is null. - - - - Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed, using the specified scheduler to run timers. - - Relative time at which to produce the first value. If this value is less than or equal to TimeSpan.Zero, the timer will fire as soon as possible. - Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - Scheduler to run timers on. - An observable sequence that produces a value after due time has elapsed and then each period. - is less than TimeSpan.Zero. - is null. - - - - Returns an observable sequence that periodically produces a value starting at the specified initial absolute due time, using the specified scheduler to run timers. - - Absolute time at which to produce the first value. If this value is less than or equal to DateTimeOffset.UtcNow, the timer will fire as soon as possible. - Period to produce subsequent values. If this value is equal to TimeSpan.Zero, the timer will recur as fast as possible. - Scheduler to run timers on. - An observable sequence that produces a value at due time and then after each period. - is less than TimeSpan.Zero. - is null. - - - - Timestamps each element in an observable sequence using the local system clock. - - The type of the elements in the source sequence. - Source sequence to timestamp elements for. - An observable sequence with timestamp information on elements. - is null. - - - - Timestamp each element in an observable sequence using the clock of the specified scheduler. - - The type of the elements in the source sequence. - Source sequence to timestamp elements for. - Scheduler used to compute timestamps. - An observable sequence with timestamp information on elements. - or is null. - - - - Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - The sequence of windows. - is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into consecutive non-overlapping windows which are produced based on timing information, using the specified scheduler to run timers. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - Scheduler to run windowing timers on. - An observable sequence of windows. - or is null. - is less than TimeSpan.Zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into zero or more windows which are produced based on timing information. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - Interval between creation of consecutive windows. - An observable sequence of windows. - is null. - or is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration - length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the - current window may not execute immediately, despite the TimeSpan.Zero due time. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler, - where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - - Projects each element of an observable sequence into zero or more windows which are produced based on timing information, using the specified scheduler to run timers. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Length of each window. - Interval between creation of consecutive windows. - Scheduler to run windowing timers on. - An observable sequence of windows. - or is null. - or is less than TimeSpan.Zero. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows with minimum duration - length. However, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced by the scheduler, where the action to close the - current window may not execute immediately, despite the TimeSpan.Zero due time. - - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - However, this doesn't mean all windows will start at the beginning of the source sequence. This is a side-effect of the asynchrony introduced by the scheduler, - where the action to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - - Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed. - A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Maximum time length of a window. - Maximum element count of a window. - An observable sequence of windows. - is null. - is less than TimeSpan.Zero. -or- is less than or equal to zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Projects each element of an observable sequence into a window that is completed when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers. - A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. - - The type of the elements in the source sequence, and in the windows in the result sequence. - Source sequence to produce windows over. - Maximum time length of a window. - Maximum element count of a window. - Scheduler to run windowing timers on. - An observable sequence of windows. - or is null. - is less than TimeSpan.Zero. -or- is less than or equal to zero. - - Specifying a TimeSpan.Zero value for is not recommended but supported, causing the scheduler to create windows as fast as it can. - Because all source sequence elements end up in one of the windows, some windows won't have a zero time span. This is a side-effect of the asynchrony introduced - by the scheduler, where the action to close the current window and to create a new window may not execute immediately, despite the TimeSpan.Zero due time. - - - - - Represents the result of an asynchronous operation. - The last value before the OnCompleted notification, or the error received through OnError, is sent to all subscribed observers. - - The type of the elements processed by the subject. - - - - Creates a subject that can only receive one value and that value is cached for all future observations. - - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Notifies all subscribed observers about the end of the sequence, also causing the last received value to be sent out (if any). - - - - - Notifies all subscribed observers about the exception. - - The exception to send to all observers. - is null. - - - - Sends a value to the subject. The last value received before successful termination will be sent to all subscribed and future observers. - - The value to store in the subject. - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - Unsubscribe all observers and release resources. - - - - - Gets an awaitable object for the current AsyncSubject. - - Object that can be awaited. - - - - Specifies a callback action that will be invoked when the subject completes. - - Callback action that will be invoked when the subject completes. - is null. - - - - Gets whether the AsyncSubject has completed. - - - - - Gets the last element of the subject, potentially blocking until the subject completes successfully or exceptionally. - - The last element of the subject. Throws an InvalidOperationException if no element was received. - The source sequence is empty. - - - - Represents a value that changes over time. - Observers can subscribe to the subject to receive the last (or initial) value and all subsequent notifications. - - The type of the elements processed by the subject. - - - - Initializes a new instance of the class which creates a subject that caches its last value and starts with the specified value. - - Initial value sent to observers when no other value has been received by the subject yet. - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Gets the current value or throws an exception. - - The initial value passed to the constructor until is called; after which, the last value passed to . - - is frozen after is called. - After is called, always throws the specified exception. - An exception is always thrown after is called. - - Reading is a thread-safe operation, though there's a potential race condition when or are being invoked concurrently. - In some cases, it may be necessary for a caller to use external synchronization to avoid race conditions. - - - Dispose was called. - - - - Tries to get the current value or throws an exception. - - The initial value passed to the constructor until is called; after which, the last value passed to . - true if a value is available; false if the subject was disposed. - - The value returned from is frozen after is called. - After is called, always throws the specified exception. - - Calling is a thread-safe operation, though there's a potential race condition when or are being invoked concurrently. - In some cases, it may be necessary for a caller to use external synchronization to avoid race conditions. - - - - - - Notifies all subscribed observers about the end of the sequence. - - - - - Notifies all subscribed observers about the exception. - - The exception to send to all observers. - is null. - - - - Notifies all subscribed observers about the arrival of the specified element in the sequence. - - The value to send to all observers. - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - Unsubscribe all observers and release resources. - - - - - Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence. - - The type of the elements in the source sequence. - The type of the elements in the resulting sequence, after transformation through the subject. - - - - Creates an observable that can be connected and disconnected from its source. - - Underlying observable source sequence that can be connected and disconnected from the wrapper. - Subject exposed by the connectable observable, receiving data from the underlying source sequence upon connection. - - - - Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established. - - Disposable object used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence. - - - - Subscribes an observer to the observable sequence. No values from the underlying observable source will be received unless a connection was established through the Connect method. - - Observer that will receive values from the underlying observable source when the current ConnectableObservable instance is connected through a call to Connect. - Disposable used to unsubscribe from the observable sequence. - - - - Represents an object that is both an observable sequence as well as an observer. - Each notification is broadcasted to all subscribed and future observers, subject to buffer trimming policies. - - The type of the elements processed by the subject. - - - - Underlying optimized implementation of the replay subject. - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class with the specified scheduler. - - Scheduler the observers are invoked on. - is null. - - - - Initializes a new instance of the class with the specified buffer size. - - Maximum element count of the replay buffer. - is less than zero. - - - - Initializes a new instance of the class with the specified buffer size and scheduler. - - Maximum element count of the replay buffer. - Scheduler the observers are invoked on. - is null. - is less than zero. - - - - Initializes a new instance of the class with the specified window. - - Maximum time length of the replay buffer. - is less than TimeSpan.Zero. - - - - Initializes a new instance of the class with the specified window and scheduler. - - Maximum time length of the replay buffer. - Scheduler the observers are invoked on. - is null. - is less than TimeSpan.Zero. - - - - Initializes a new instance of the class with the specified buffer size and window. - - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - is less than zero. -or- is less than TimeSpan.Zero. - - - - Initializes a new instance of the class with the specified buffer size, window and scheduler. - - Maximum element count of the replay buffer. - Maximum time length of the replay buffer. - Scheduler the observers are invoked on. - is less than zero. -or- is less than TimeSpan.Zero. - is null. - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Notifies all subscribed and future observers about the arrival of the specified element in the sequence. - - The value to send to all observers. - - - - Notifies all subscribed and future observers about the specified exception. - - The exception to send to all observers. - is null. - - - - Notifies all subscribed and future observers about the end of the sequence. - - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - Releases all resources used by the current instance of the class and unsubscribe all observers. - - - - - Original implementation of the ReplaySubject with time based operations (Scheduling, Stopwatch, buffer-by-time). - - - - - Specialized scheduled observer similar to a scheduled observer for the immediate scheduler. - - Type of the elements processed by the observer. - - - - Gate to control ownership transfer and protect data structures. - - - - - Observer to forward notifications to. - - - - - Queue to enqueue OnNext notifications into. - - - - - Standby queue to swap out for _queue when transferring ownership. This allows to reuse - queues in case of busy subjects where the initial replay doesn't suffice to catch up. - - - - - Exception passed to an OnError notification, if any. - - - - - Indicates whether an OnCompleted notification was received. - - - - - Indicates whether the observer is busy, i.e. some thread is actively draining the - notifications that were queued up. - - - - - Indicates whether a failure occurred when the owner was draining the queue. This will - prevent future work to be processed. - - - - - Creates a new scheduled observer that proxies to the specified observer. - - Observer to forward notifications to. - - - - Disposes the observer. - - - - - Notifies the observer of pending work. This will either cause the current owner to - process the newly enqueued notifications, or it will cause the calling thread to - become the owner and start processing the notification queue. - - - - - Notifies the observer of pending work. This will either cause the current owner to - process the newly enqueued notifications, or it will cause the calling thread to - become the owner and start processing the notification queue. - - The number of enqueued notifications to process (ignored). - - - - Enqueues an OnCompleted notification. - - - - - Enqueues an OnError notification. - - Error of the notification. - - - - Enqueues an OnNext notification. - - Value of the notification. - - - - Terminates the observer upon receiving terminal notifications, thus preventing - future notifications to go out. - - Observer to send terminal notifications to. - - - - Represents an object that is both an observable sequence as well as an observer. - Each notification is broadcasted to all subscribed observers. - - The type of the elements processed by the subject. - - - - Creates a subject. - - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Notifies all subscribed observers about the end of the sequence. - - - - - Notifies all subscribed observers about the specified exception. - - The exception to send to all currently subscribed observers. - is null. - - - - Notifies all subscribed observers about the arrival of the specified element in the sequence. - - The value to send to all currently subscribed observers. - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - Releases all resources used by the current instance of the class and unsubscribes all observers. - - - - - Provides a set of static methods for creating subjects. - - - - - Creates a subject from the specified observer and observable. - - The type of the elements received by the observer. - The type of the elements produced by the observable sequence. - The observer used to send messages to the subject. - The observable used to subscribe to messages sent from the subject. - Subject implemented using the given observer and observable. - or is null. - - - - Creates a subject from the specified observer and observable. - - The type of the elements received by the observer and produced by the observable sequence. - The observer used to send messages to the subject. - The observable used to subscribe to messages sent from the subject. - Subject implemented using the given observer and observable. - or is null. - - - - Synchronizes the messages sent to the subject. - - The type of the elements received by the subject. - The type of the elements produced by the subject. - The subject to synchronize. - Subject whose messages are synchronized. - is null. - - - - Synchronizes the messages sent to the subject. - - The type of the elements received and produced by the subject. - The subject to synchronize. - Subject whose messages are synchronized. - is null. - - - - Synchronizes the messages sent to the subject and notifies observers on the specified scheduler. - - The type of the elements received by the subject. - The type of the elements produced by the subject. - The subject to synchronize. - Scheduler to notify observers on. - Subject whose messages are synchronized and whose observers are notified on the given scheduler. - or is null. - - - - Synchronizes the messages sent to the subject and notifies observers on the specified scheduler. - - The type of the elements received and produced by the subject. - The subject to synchronize. - Scheduler to notify observers on. - Subject whose messages are synchronized and whose observers are notified on the given scheduler. - or is null. - - - - Base calss for objects that are both an observable sequence as well as an observer. - - The type of the elements processed by the subject. - - - - Indicates whether the subject has observers subscribed to it. - - - - - Indicates whether the subject has been disposed. - - - - - Releases all resources used by the current instance of the subject and unsubscribes all observers. - - - - - Notifies all subscribed observers about the end of the sequence. - - - - - Notifies all subscribed observers about the specified exception. - - The exception to send to all currently subscribed observers. - is null. - - - - Notifies all subscribed observers about the arrival of the specified element in the sequence. - - The value to send to all currently subscribed observers. - - - - Subscribes an observer to the subject. - - Observer to subscribe to the subject. - Disposable object that can be used to unsubscribe the observer from the subject. - is null. - - - - The System.Reactive.Threading.Tasks namespace contains helpers for the conversion between tasks and observable sequences. - - - - - Provides a set of static methods for converting tasks to observable sequences. - - - - - Returns an observable sequence that signals when the task completes. - - Task to convert to an observable sequence. - An observable sequence that produces a unit value when the task completes, or propagates the exception produced by the task. - is null. - If the specified task object supports cancellation, consider using instead. - - - - Returns an observable sequence that signals when the task completes. - - Task to convert to an observable sequence. - Scheduler on which to notify observers about completion, cancellation or failure. - An observable sequence that produces a unit value when the task completes, or propagates the exception produced by the task. - is null or is null. - If the specified task object supports cancellation, consider using instead. - - - - Returns an observable sequence that propagates the result of the task. - - The type of the result produced by the task. - Task to convert to an observable sequence. - An observable sequence that produces the task's result, or propagates the exception produced by the task. - is null. - If the specified task object supports cancellation, consider using instead. - - - - Returns an observable sequence that propagates the result of the task. - - The type of the result produced by the task. - Task to convert to an observable sequence. - Scheduler on which to notify observers about completion, cancellation or failure. - An observable sequence that produces the task's result, or propagates the exception produced by the task. - is null or is null. - If the specified task object supports cancellation, consider using instead. - - - - Returns a task that will receive the last value or the exception produced by the observable sequence. - - The type of the elements in the source sequence. - Observable sequence to convert to a task. - A task that will receive the last element or the exception produced by the observable sequence. - is null. - - - - Returns a task that will receive the last value or the exception produced by the observable sequence. - - The type of the elements in the source sequence. - Observable sequence to convert to a task. - The state to use as the underlying task's AsyncState. - A task that will receive the last element or the exception produced by the observable sequence. - is null. - - - - Returns a task that will receive the last value or the exception produced by the observable sequence. - - The type of the elements in the source sequence. - Observable sequence to convert to a task. - Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence. - A task that will receive the last element or the exception produced by the observable sequence. - is null. - - - - Returns a task that will receive the last value or the exception produced by the observable sequence. - - The type of the elements in the source sequence. - Observable sequence to convert to a task. - Cancellation token that can be used to cancel the task, causing unsubscription from the observable sequence. - The state to use as the underlying task's AsyncState. - A task that will receive the last element or the exception produced by the observable sequence. - is null. - - - diff --git a/References/netstandard1.0/System.Reactive.PlatformServices.dll b/References/netstandard1.0/System.Reactive.PlatformServices.dll deleted file mode 100644 index 65b06b4..0000000 Binary files a/References/netstandard1.0/System.Reactive.PlatformServices.dll and /dev/null differ diff --git a/References/netstandard1.0/System.Reactive.PlatformServices.xml b/References/netstandard1.0/System.Reactive.PlatformServices.xml deleted file mode 100644 index 3d4a753..0000000 --- a/References/netstandard1.0/System.Reactive.PlatformServices.xml +++ /dev/null @@ -1,304 +0,0 @@ - - - - System.Reactive.PlatformServices - - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - - Returns the cached ResourceManager instance used by this class. - - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - - Looks up a localized string similar to The WinRT thread pool doesn't support creating periodic timers with a period below 1 millisecond.. - - - - - Provides access to the platform enlightenments used by other Rx libraries to improve system performance and - runtime efficiency. While Rx can run without platform enlightenments loaded, it's recommended to deploy the - System.Reactive.PlatformServices assembly with your application and call during application startup to ensure enlightenments are properly loaded. - - - - - Ensures that the calling assembly has a reference to the System.Reactive.PlatformServices assembly with - platform enlightenments. If no reference is made from the user code, it's possible for the build process - to drop the deployment of System.Reactive.PlatformServices, preventing its runtime discovery. - - - true if the loaded enlightenment provider matches the provided defined in the current assembly; false - otherwise. When a custom enlightenment provider is installed by the host, false will be returned. - - - - - (Infrastructure) Provider for platform-specific framework enlightenments. - - - - - (Infastructure) Tries to gets the specified service. - - Service type. - Optional set of arguments. - Service instance or null if not found. - - - - Represents an object that schedules units of work on a designated thread. - - - - - Counter for diagnostic purposes, to name the threads. - - - - - Thread factory function. - - - - - Stopwatch for timing free of absolute time dependencies. - - - - - Thread used by the event loop to run work items on. No work should be run on any other thread. - If ExitIfEmpty is set, the thread can quit and a new thread will be created when new work is scheduled. - - - - - Gate to protect data structures, including the work queue and the ready list. - - - - - Semaphore to count requests to re-evaluate the queue, from either Schedule requests or when a timer - expires and moves on to the next item in the queue. - - - - - Queue holding work items. Protected by the gate. - - - - - Queue holding items that are ready to be run as soon as possible. Protected by the gate. - - - - - Work item that will be scheduled next. Used upon reevaluation of the queue to check whether the next - item is still the same. If not, a new timer needs to be started (see below). - - - - - Disposable that always holds the timer to dispatch the first element in the queue. - - - - - Flag indicating whether the event loop should quit. When set, the event should be signaled as well to - wake up the event loop thread, which will subsequently abandon all work. - - - - - Creates an object that schedules units of work on a designated thread. - - - - - Indicates whether the event loop thread is allowed to quit when no work is left. If new work - is scheduled afterwards, a new event loop thread is created. This property is used by the - NewThreadScheduler which uses an event loop for its recursive invocations. - - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - The scheduler has been disposed and doesn't accept new work. - - - - Schedules a periodic piece of work on the designated thread. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than TimeSpan.Zero. - The scheduler has been disposed and doesn't accept new work. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Ends the thread associated with this scheduler. All remaining work in the scheduler queue is abandoned. - - - - - Ensures there is an event loop thread running. Should be called under the gate. - - - - - Event loop scheduled on the designated event loop thread. The loop is suspended/resumed using the event - which gets set by calls to Schedule, the next item timer, or calls to Dispose. - - - - - Represents an object that schedules each unit of work on a separate thread. - - - - - Creates an object that schedules each unit of work on a separate thread. - - - - - Gets an instance of this scheduler that uses the default Thread constructor. - - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a long-running task by creating a new thread. Cancellation happens through polling. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a periodic piece of work by creating a new thread that goes to sleep when work has been dispatched and wakes up again at the next periodic due time. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than TimeSpan.Zero. - - - - Starts a new stopwatch object. - - New stopwatch object; started at the time of the request. - - - - Represents an object that schedules units of work on the Task Parallel Library (TPL) task pool. - - Instance of this type using the default TaskScheduler to schedule work on the TPL task pool. - - - - Creates an object that schedules units of work using the provided TaskFactory. - - Task factory used to create tasks to run units of work. - is null. - - - - Gets an instance of this scheduler that uses the default TaskScheduler. - - - - - Schedules an action to be executed. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules an action to be executed after dueTime. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - Relative time after which to execute the action. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Schedules a long-running task by creating a new task using TaskCreationOptions.LongRunning. Cancellation happens through polling. - - The type of the state passed to the scheduled action. - State passed to the action to be executed. - Action to be executed. - The disposable object used to cancel the scheduled action (best effort). - is null. - - - - Gets a new stopwatch ob ject. - - New stopwatch object; started at the time of the request. - - - - Schedules a periodic piece of work by running a platform-specific timer to create tasks periodically. - - The type of the state passed to the scheduled action. - Initial state passed to the action upon the first iteration. - Period for running the work periodically. - Action to be executed, potentially updating the state. - The disposable object used to cancel the scheduled recurring action (best effort). - is null. - is less than TimeSpan.Zero. - - - diff --git a/Samples/BondEtw/API/BondEtwSample.csproj b/Samples/BondEtw/API/BondEtwSample.csproj index bd094d0..4d131ab 100644 --- a/Samples/BondEtw/API/BondEtwSample.csproj +++ b/Samples/BondEtw/API/BondEtwSample.csproj @@ -25,15 +25,12 @@ ..\..\..\References\DESKTOPCLR45\Bond.Attributes.dll - - False - - - False - - - False + + ..\..\..\Packages\System.Reactive.4.0.0\lib\net46\System.Reactive.dll + + + @@ -57,6 +54,9 @@ + + + - 2.1.1 - Tx (LINQ to Logs and Traces) components for generation of C# types representing Event Tracing for Windows (ETW) and Event Log events - Microsoft - Copyright © Microsoft. All Rights Reserved - https://github.com/Microsoft/Tx - https://github.com/Microsoft/Tx/blob/master/license.txt - en-us - Tx Traces Logs Playback Replay ETW - false - - - - - - - - - - - - \ No newline at end of file diff --git a/Source/SetVersion/App.config b/Source/SetVersion/App.config deleted file mode 100644 index 8e15646..0000000 --- a/Source/SetVersion/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Source/SetVersion/Program.cs b/Source/SetVersion/Program.cs deleted file mode 100644 index 0b173ab..0000000 --- a/Source/SetVersion/Program.cs +++ /dev/null @@ -1,110 +0,0 @@ -using System; -using System.IO; -using System.Linq; -using System.Xml.Linq; - -namespace SetVersion -{ - internal class Program - { - private static void Main(string[] args) - { - string version = args[0]; - var validCharacters = "1234567890.".ToCharArray(); - var hasInvalidCharacters = version - .ToCharArray() - .Except(validCharacters).Any(); - - if (hasInvalidCharacters) - { - throw new ApplicationException("Version is in invalid format: " + version); - } - - string filename = args[1]; - - if (!File.Exists(filename)) - { - throw new FileNotFoundException(filename); - } - - var extension = Path.GetExtension(filename); - - if (new[] { extension } - .Except(new[] { ".csproj", ".nuspec", ".txt" }, StringComparer.OrdinalIgnoreCase).Any()) - { - throw new ApplicationException("Only csproj and nuspec files are supported"); - } - - if (Path.GetFileName(filename).Equals("DriverDescription.txt", StringComparison.OrdinalIgnoreCase)) - { - var text = File.ReadAllText(filename); - - text = text.Replace("{version}", version); - - File.WriteAllText(filename, text); - - return; - } - - var document = XDocument.Load(filename); - - XElement parentElement = null; - - if (string.Equals(extension, ".csproj", StringComparison.OrdinalIgnoreCase)) - { - parentElement = document.Descendants("Project") - .First() - .Descendants("PropertyGroup") - .First(); - } - else if(string.Equals(extension, ".nuspec", StringComparison.OrdinalIgnoreCase)) - { - parentElement = document.Descendants("package") - .First() - .Descendants("metadata") - .First(); - - foreach (var item in parentElement - .Descendants("dependencies") - .Descendants()) - { - var attribute = item.Attribute(XName.Get("id")); - if (attribute.Value.StartsWith("Tx.")) - { - var versionAttribute = item.Attribute(XName.Get("version")); - if (versionAttribute.Value.Contains("{version}")) - { - versionAttribute.Value = versionAttribute.Value.Replace("{version}", version); - } - else - { - versionAttribute.Value = version; - } - } - } - } - - var versionElement = parentElement - .Descendants() - .FirstOrDefault(i => string.Equals(i.Name.ToString(), "Version", StringComparison.OrdinalIgnoreCase)); - - if (versionElement != null) - { - if (versionElement.Value.Contains("{version}")) - { - versionElement.Value = versionElement.Value.Replace("{version}", version); - } - else - { - versionElement.Value = version; - } - } - else - { - parentElement.Add(new XElement(XName.Get("Version")) { Name = "Version", Value = version }); - } - - document.Save(filename); - } - } -} diff --git a/Source/SetVersion/SetVersion.csproj b/Source/SetVersion/SetVersion.csproj deleted file mode 100644 index f0bf9a3..0000000 --- a/Source/SetVersion/SetVersion.csproj +++ /dev/null @@ -1,48 +0,0 @@ - - - - - Debug - AnyCPU - {D4B1BE53-01B5-4341-869E-BCBBF7160EBB} - Exe - SetVersion - SetVersion - v4.5 - 512 - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Source/Tx.All/Tx.All.nuspec b/Source/Tx.All/Tx.All.nuspec deleted file mode 100644 index 64deb1d..0000000 --- a/Source/Tx.All/Tx.All.nuspec +++ /dev/null @@ -1,22 +0,0 @@ - - - - Tx.All - Tx.All - 2.1.1 - Tx (LINQ to Logs and Traces) container package for all supported raw trace/log sources - Microsoft - Copyright © Microsoft. All Rights Reserved - http://tx.codeplex.com - http://tx.codeplex.com/license - en-us - Tx Traces Logs Playback Replay XEvent ETW - false - - - - - - - - \ No newline at end of file diff --git a/Source/Tx.Bond/BinaryEventSource.cs b/Source/Tx.Bond/BinaryEventSource.cs index 05eb0fb..9c47ec5 100644 --- a/Source/Tx.Bond/BinaryEventSource.cs +++ b/Source/Tx.Bond/BinaryEventSource.cs @@ -4,10 +4,9 @@ namespace Tx.Bond { using System; using System.Collections.Generic; + using System.Diagnostics.Tracing; using System.Reactive; - using Microsoft.Diagnostics.Tracing; - /// /// Custom EventSource Implementation that writes BinaryEnvelope information to ETW stream /// diff --git a/Source/Tx.Bond/Tx.Bond.csproj b/Source/Tx.Bond/Tx.Bond.csproj index 67c6b59..92cfd70 100644 --- a/Source/Tx.Bond/Tx.Bond.csproj +++ b/Source/Tx.Bond/Tx.Bond.csproj @@ -1,35 +1,28 @@ - + - net45 - True - ..\key.snk - Tx (LINQ to Logs and Traces) Binary-in-ETW transport components - Microsoft - Microsoft - True - Tx Traces Logs Playback Replay ETW Bond - git - Copyright © Microsoft. All Rights Reserved - https://github.com/Microsoft/Tx/blob/master/license.txt - https://github.com/Microsoft/Tx/ - https://github.com/Microsoft/Tx.git - 2.1.1 - - - bin\Release\net45\Tx.Bond.xml + net46 + true + key.snk + - - + + + + + + ..\..\References\DESKTOPCLR45\Bond.dll + + + ..\..\References\DESKTOPCLR45\Bond.Attributes.dll + - - - - \ No newline at end of file + + diff --git a/Source/Tx.Bond/key.snk b/Source/Tx.Bond/key.snk new file mode 100644 index 0000000..0238575 Binary files /dev/null and b/Source/Tx.Bond/key.snk differ diff --git a/Source/Tx.Core/Tx.Core.csproj b/Source/Tx.Core/Tx.Core.csproj index d3f57a0..b49bf72 100644 --- a/Source/Tx.Core/Tx.Core.csproj +++ b/Source/Tx.Core/Tx.Core.csproj @@ -1,32 +1,25 @@ - + - netcoreapp1.1;net45 - True - ..\key.snk - False - True + netstandard2.0;net46 + true + key.snk + true + 3.0.0.0 + 3.0.0.0 + 3.0.0 Tx (LINQ to Logs and Traces) core components, not specific to the event format + Copyright © Microsoft. All Rights Reserved https://github.com/Microsoft/Tx/blob/master/license.txt https://github.com/Microsoft/Tx/ - Copyright © Microsoft. All Rights Reserved Microsoft - Microsoft Tx Traces Logs Playback Replay git https://github.com/Microsoft/Tx.git - 2.1.1 - - - bin\Release\netcoreapp1.1\.xml - - - bin\Release\net45\.xml + - + - - - - \ No newline at end of file + + diff --git a/Source/Tx.Core/key.snk b/Source/Tx.Core/key.snk new file mode 100644 index 0000000..0238575 Binary files /dev/null and b/Source/Tx.Core/key.snk differ diff --git a/Source/Tx.LinqPad/Tx.LinqPad.csproj b/Source/Tx.LinqPad/Tx.LinqPad.csproj index bbcb2cb..891dd22 100644 --- a/Source/Tx.LinqPad/Tx.LinqPad.csproj +++ b/Source/Tx.LinqPad/Tx.LinqPad.csproj @@ -23,16 +23,15 @@ - + + + - - ..\..\References\LinqPad\LINQPad.exe - ..\..\References\XEvent\Microsoft.SqlServer.XE.Core.dll @@ -45,13 +44,13 @@ ..\..\References\XEvent\Microsoft.SqlServer.XEvent.Targets.dll + + ..\..\References\XEvent\Microsoft.SqlServer.XEvent.Configuration.dll + - - ..\..\References\DESKTOPCLR45\System.Reactive.Windows.Forms.dll - @@ -61,9 +60,20 @@ + + PreserveNewest + PreserveNewest + + gbc.exe + PreserveNewest + + + zip.exe + PreserveNewest + @@ -102,5 +112,16 @@ SampleWcfTrace.etl PreserveNewest + + xe.dll + PreserveNewest + + + msvcr100.dll + PreserveNewest + + + zip.exe Tx.LinqPad.lpx header.xml System.Reactive.dll System.Reactive.Linq.dll System.Reactive.Linq.dll System.Reactive.Windows.Forms.dll System.Security.Claims.dll System.Security.Principal.Windows.dll Tx.Core.dll Tx.Windows.dll Tx.Windows.TypeGeneration.dll Tx.SqlServer.dll msvcr100.dll xe.dll Microsoft.SqlServer.XE.Core.dll Microsoft.SqlServer.XEvent.Configuration.dll Microsoft.SqlServer.XEvent.dll Microsoft.SqlServer.XEvent.Linq.dll Microsoft.SqlServer.XEvent.Targets.dll Tx.LinqPad.dll HTTP_Server.man HTTP_Server.etl BasicPerfCounters.blg CrossMachineHTTP.etl CrossMachineIE.etl IE_Client.man sqltrace.xel Microsoft.Windows.ApplicationServer.Applications.man SampleWcfTrace.etl + \ No newline at end of file diff --git a/Source/Tx.Network/InternalsVisibleTo.cs b/Source/Tx.Network/InternalsVisibleTo.cs new file mode 100644 index 0000000..2d35ad3 --- /dev/null +++ b/Source/Tx.Network/InternalsVisibleTo.cs @@ -0,0 +1,8 @@ +// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. + +using System.Runtime.CompilerServices; + +[assembly: + InternalsVisibleTo( + assemblyName: "Tx.Network.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" + )] \ No newline at end of file diff --git a/Source/Tx.Network/Pcap/Pcap.cs b/Source/Tx.Network/Pcap/Pcap.cs index 02429a0..d85325c 100644 --- a/Source/Tx.Network/Pcap/Pcap.cs +++ b/Source/Tx.Network/Pcap/Pcap.cs @@ -11,74 +11,55 @@ namespace Tx.Network { public class Pcap { - /// - /// Reads a file and returns the parsed s. - /// - /// The name of the file to parse. - /// The parsed s. public static IEnumerable ReadFile(string filename) { using (var stream = File.OpenRead(filename)) { - foreach (var r in ReadStream(stream)) - yield return r; - } - } - - /// - /// Reads a and returns the parsed s. - /// - /// The to parse. - /// The parsed s. - public static IEnumerable ReadStream(Stream stream) - { - if (stream == null) - throw new ArgumentNullException(nameof(stream)); - - using (var reader = new BinaryReader(stream)) - { - int pos = 0; - int length = (int)reader.BaseStream.Length; - if (length <= (24 + 16)) + using (var reader = new BinaryReader(stream)) { - yield break; - } - - var magicNumber = reader.ReadUInt32(); - var version_major = reader.ReadUInt16(); - var version_minor = reader.ReadUInt16(); - var thiszone = reader.ReadInt32(); - var sigfigs = reader.ReadUInt32(); - var snaplen = reader.ReadUInt32(); - var network = reader.ReadUInt32(); - - pos += 24; - - while ((pos + 16) < length) - { - var ts_sec = reader.ReadUInt32(); - var ts_usec = reader.ReadUInt32(); - var incl_len = reader.ReadUInt32(); - var orig_len = reader.ReadUInt32(); - - pos += 16; - - if ((pos + incl_len) > length) + int pos = 0; + int length = (int)reader.BaseStream.Length; + if (length <= (24 + 16)) { yield break; } - var data = reader.ReadBytes((int)incl_len); - pos += (int)incl_len; + var magicNumber = reader.ReadUInt32(); + var version_major = reader.ReadUInt16(); + var version_minor = reader.ReadUInt16(); + var thiszone = reader.ReadInt32(); + var sigfigs = reader.ReadUInt32(); + var snaplen = reader.ReadUInt32(); + var network = reader.ReadUInt32(); - yield return new PcapRecord + pos += 24; + + while ((pos + 16) < length) { - Data = data, - NetworkId = network, - Timestamp = new DateTimeOffset(1970, 1, 1, 0, 0, 0, TimeSpan.Zero) - .AddSeconds(ts_sec + thiszone) - .AddMilliseconds((ts_usec == 0 || ts_usec >= 1000000) ? ts_usec : ts_usec / 1000) - }; + var ts_sec = reader.ReadUInt32(); + var ts_usec = reader.ReadUInt32(); + var incl_len = reader.ReadUInt32(); + var orig_len = reader.ReadUInt32(); + + pos += 16; + + if ((pos + incl_len) > length) + { + yield break; + } + + var data = reader.ReadBytes((int)incl_len); + pos += (int)incl_len; + + yield return new PcapRecord + { + Data = data, + NetworkId = network, + Timestamp = new DateTimeOffset(1970, 1, 1, 0, 0, 0, TimeSpan.Zero) + .AddSeconds(ts_sec + thiszone) + .AddMilliseconds((ts_usec == 0 || ts_usec >= 1000000) ? ts_usec : ts_usec / 1000) + }; + } } } } diff --git a/Source/Tx.Network/Pcap/PcapNg.cs b/Source/Tx.Network/Pcap/PcapNg.cs index b8827fc..aa5fe34 100644 --- a/Source/Tx.Network/Pcap/PcapNg.cs +++ b/Source/Tx.Network/Pcap/PcapNg.cs @@ -104,7 +104,7 @@ namespace Tx.Network protected string ReadAsciiOption(BinaryReader reader, int len) { - int readLen = len + (4 - len % 4) % 4; + int readLen = len + (4 - len % 4); byte[] bytes = reader.ReadBytes(readLen); string s = Encoding.ASCII.GetString(bytes, 0, len); return s; @@ -112,7 +112,7 @@ namespace Tx.Network protected byte[] ReadBytesOption(BinaryReader reader, int len) { - int readLen = len + (4 - len % 4) % 4; + int readLen = len + (4 - len % 4); byte[] bytes = reader.ReadBytes(readLen); return bytes; } diff --git a/Source/Tx.Network/Pcap/PcapNgWriter.cs b/Source/Tx.Network/Pcap/PcapNgWriter.cs index e63eb2f..4b7ae3a 100644 --- a/Source/Tx.Network/Pcap/PcapNgWriter.cs +++ b/Source/Tx.Network/Pcap/PcapNgWriter.cs @@ -74,7 +74,7 @@ if (this.stream != null) { this.stream.Flush(); - this.stream.Dispose(); + this.stream.Close(); this.stream = null; } } diff --git a/Source/Tx.Network/Properties/Tx.Network.Layout.cmd b/Source/Tx.Network/Properties/Tx.Network.Layout.cmd new file mode 100644 index 0000000..7c929e8 --- /dev/null +++ b/Source/Tx.Network/Properties/Tx.Network.Layout.cmd @@ -0,0 +1,6 @@ +rd /s/q Tx.Network + +md Tx.Network\lib\Net45 +copy Net45\Tx.Network.dll Tx.Network\lib\Net45 +copy Net45\Tx.Network.xml Tx.Network\lib\Net45 +copy Net45\Tx.Network.pdb Tx.Network\lib\Net45 diff --git a/Source/Tx.Network/Properties/Tx.Network.nuspec b/Source/Tx.Network/Properties/Tx.Network.nuspec new file mode 100644 index 0000000..0f3bf19 --- /dev/null +++ b/Source/Tx.Network/Properties/Tx.Network.nuspec @@ -0,0 +1,22 @@ + + + + Tx.Network + Tx.Network + + {version}-beta7 + Parsing of Network related file and wire formats, such as .pcap and .pcapng, UDP datagrams, Syslog and SNMP messages. + Microsoft + Copyright © Microsoft. All Rights Reserved + + http://tx.codeplex.com + http://tx.codeplex.com/license + + en-us + Tx Playback Replay Pcap PcapNG Snmp Syslog + false + + + + + \ No newline at end of file diff --git a/Source/Tx.Network/Properties/TxNetworkAssemblyInfo.cs b/Source/Tx.Network/Properties/TxNetworkAssemblyInfo.cs index f56413e..e93a4ef 100644 --- a/Source/Tx.Network/Properties/TxNetworkAssemblyInfo.cs +++ b/Source/Tx.Network/Properties/TxNetworkAssemblyInfo.cs @@ -1,2 +1,2 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("Tx.Network.Tests,PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789c13e6805dc176aa2ac748fe291fdc43357c7a6f5044a2d979e8c51baf27fe7ce2dc23b2f06e10dc6d2bbd460bf3756d0d2208b12708e5dd9498493b882e7869cf2e3e48c4b7bc758ae4f882835c559a4082a11051cbf74ddf36e8272fdde45e3da6ec2fea577b6e21f27b45a02f6a5b2d358c4a0fa60ed1407a2bc96cc")] +[assembly: InternalsVisibleTo("Tests.Tx,PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789c13e6805dc176aa2ac748fe291fdc43357c7a6f5044a2d979e8c51baf27fe7ce2dc23b2f06e10dc6d2bbd460bf3756d0d2208b12708e5dd9498493b882e7869cf2e3e48c4b7bc758ae4f882835c559a4082a11051cbf74ddf36e8272fdde45e3da6ec2fea577b6e21f27b45a02f6a5b2d358c4a0fa60ed1407a2bc96cc")] diff --git a/Source/Tx.Network/Snmp/Dynamic/TrapTypeMap.cs b/Source/Tx.Network/Snmp/Dynamic/TrapTypeMap.cs index 29a8dde..b960d3c 100644 --- a/Source/Tx.Network/Snmp/Dynamic/TrapTypeMap.cs +++ b/Source/Tx.Network/Snmp/Dynamic/TrapTypeMap.cs @@ -36,7 +36,7 @@ public ObjectIdentifier GetTypeKey(Type outputType) { - var attribute = outputType.GetTypeInfo().GetCustomAttribute(); + var attribute = outputType.GetCustomAttribute(); return attribute?.SnmpTrapOid ?? default(ObjectIdentifier); } @@ -117,7 +117,7 @@ var foundValue = Expression.Call(getVarBindMethod, Expression.Property(parameter, pduVarBindsField), Expression.Constant(notificationObjectIdentifier.Oid), varbindVar); Expression convertedValue = Expression.Field(varbindVar, varbindValueField); - if (p.PropertyType.GetTypeInfo().IsEnum || typeof(int).IsAssignableFrom(p.PropertyType)) + if (p.PropertyType.IsEnum || typeof(int).IsAssignableFrom(p.PropertyType)) { convertedValue = Expression.Convert(convertedValue, typeof(long)); } diff --git a/Source/Tx.Network/Syslogs/Syslog.cs b/Source/Tx.Network/Syslogs/Syslog.cs index 1131805..7f2882d 100644 --- a/Source/Tx.Network/Syslogs/Syslog.cs +++ b/Source/Tx.Network/Syslogs/Syslog.cs @@ -1,6 +1,7 @@ namespace Tx.Network.Syslogs { using System; + using System.Collections.Generic; using System.Text; /// @@ -32,7 +33,12 @@ /// Facility of the Syslog provided from the PRIVAL field. /// public Facility LogFacility { get; private set; } - + + /// + /// Collection of regular expression matches. + /// + public IReadOnlyDictionary NamedCollectedMatches { get; private set; } + /// /// Creates a default instance of the Log object. /// @@ -41,22 +47,33 @@ string sourceIpAddress, Severity severity, Facility facility, - string message) + string message, + IReadOnlyDictionary namedCollectedMatches) { this.ReceivedTime = receivedTime; this.SourceIpAddress = sourceIpAddress; this.LogSeverity = severity; this.LogFacility = facility; this.Message = message; - + this.NamedCollectedMatches = namedCollectedMatches; } public override string ToString() { var sb = new StringBuilder(); - sb.AppendFormat("Received Time: {0}; Source IP: {1}; Severity: {2}; Facility: {3}; Message: {4}", ReceivedTime, SourceIpAddress, LogSeverity, LogFacility, Message); - + sb.AppendLine(); + + if (this.NamedCollectedMatches != null) + { + foreach (var c in this.NamedCollectedMatches) + { + sb.AppendFormat(c.Key).Append(", "); + sb.AppendLine(c.Value); + sb.AppendLine(); + } + } + return sb.ToString(); } } diff --git a/Source/Tx.Network/Syslogs/SyslogListener.cs b/Source/Tx.Network/Syslogs/SyslogListener.cs index 32ada74..c3c4d8e 100644 --- a/Source/Tx.Network/Syslogs/SyslogListener.cs +++ b/Source/Tx.Network/Syslogs/SyslogListener.cs @@ -6,6 +6,8 @@ public class SyslogListener : BaseUdpReceiver { + private readonly SyslogParser syslogParser = new SyslogParser(); + public SyslogListener(IPEndPoint listenEndPoint, uint concurrentReceivers) : base(listenEndPoint, concurrentReceivers) { @@ -30,7 +32,7 @@ try { - syslog = SyslogParser.Parse( + syslog = this.syslogParser.Parse( upacket.UdpData, upacket.ReceivedTime, upacket.PacketHeader.SourceIpAddress.ToString()); diff --git a/Source/Tx.Network/Syslogs/SyslogParser.cs b/Source/Tx.Network/Syslogs/SyslogParser.cs index 4bb0585..ac07698 100644 --- a/Source/Tx.Network/Syslogs/SyslogParser.cs +++ b/Source/Tx.Network/Syslogs/SyslogParser.cs @@ -1,22 +1,47 @@ namespace Tx.Network.Syslogs { using System; + using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; using Tx.Network; - public static class SyslogParser + public class SyslogParser { public static readonly Regex DefaultParser = new Regex( @"\<(?\d+?)\>\s*(?.+)", RegexOptions.CultureInvariant | RegexOptions.ExplicitCapture | RegexOptions.Compiled); - public static Syslog Parse(IUdpDatagram receivedPacket) + private readonly Regex parser; + + private readonly string[] groupNames; + + private readonly bool usingOnlyDefaultParser; + + public SyslogParser() + : this(DefaultParser) { - return Parse(receivedPacket.Data.AsByteArraySegment(), receivedPacket.ReceivedTime, receivedPacket.PacketHeader.SourceIpAddress.ToString()); + this.usingOnlyDefaultParser = true; } - public static Syslog Parse(ArraySegment segment, DateTimeOffset receivedTime, string sourceIpAddress) + public SyslogParser(Regex parser) + { + if (parser == null) + { + throw new ArgumentNullException("parser"); + } + + this.parser = parser; + this.groupNames = parser.GetGroupNames(); + + } + + public Syslog Parse(IUdpDatagram receivedPacket) + { + return this.Parse(receivedPacket.Data.AsByteArraySegment(), receivedPacket.ReceivedTime, receivedPacket.PacketHeader.SourceIpAddress.ToString()); + } + + public Syslog Parse(ArraySegment segment, DateTimeOffset receivedTime, string sourceIpAddress) { if (segment.Array == null) { @@ -30,8 +55,10 @@ namespace Tx.Network.Syslogs throw new ArgumentException("Incoming UDP datagram contained no Syslog data."); } + var defMatch = DefaultParser.Match(logMessage); - + + if (!defMatch.Success) { throw new ArgumentException("Cannot parse the incoming UDP datagram."); @@ -51,11 +78,33 @@ namespace Tx.Network.Syslogs } var prival = int.Parse(privalMatch); - var severity = (Severity)(prival & 0x7); - var facility = (Facility)(prival >> 3); + var severity = (Severity)Enum.ToObject(typeof(Severity), prival & 0x7); + var facility = (Facility)Enum.ToObject(typeof(Facility), prival >> 3); var message = defMatch.Groups["MESSAGE"].Value.Trim(); - - return new Syslog(receivedTime, sourceIpAddress, severity, facility, message); + + Match customMatch; + if (this.usingOnlyDefaultParser) + { + customMatch = defMatch; + } + else + { + customMatch = this.parser.Match(logMessage); + } + + var matches = new Dictionary(StringComparer.OrdinalIgnoreCase); + + foreach (var groupName in this.groupNames) + { + var group = customMatch.Groups[groupName]; + + if (group.Success && !string.IsNullOrEmpty(group.Value)) + { + matches[groupName] = group.Value; + } + } + + return new Syslog(receivedTime, sourceIpAddress, severity, facility, message, matches); } } } \ No newline at end of file diff --git a/Source/Tx.Network/Tx.Network.csproj b/Source/Tx.Network/Tx.Network.csproj index 2cab3d1..d0a456f 100644 --- a/Source/Tx.Network/Tx.Network.csproj +++ b/Source/Tx.Network/Tx.Network.csproj @@ -1,28 +1,29 @@ - + - netcoreapp1.1;net45 - Parsing of Network related file and wire formats, such as .pcap and .pcapng, UDP datagrams, Syslog and SNMP messages. - Tx Playback Replay Pcap PcapNG Snmp Syslog + netstandard2.0;net46 + true + key.snk + true + 3.0.0.0 + 3.0.0.0 + 3.0.0 + Tx Network Copyright © Microsoft. All Rights Reserved - Microsoft - Microsoft https://github.com/Microsoft/Tx/blob/master/license.txt https://github.com/Microsoft/Tx/ - https://github.com/Microsoft/Tx.git + Microsoft + Tx Traces Logs Playback Replay Network git - True - True - ..\key.snk - 2.1.1 - - - bin\Release\netcoreapp1.1\.xml - - - bin\Release\net45\.xml + https://github.com/Microsoft/Tx.git + + + + + - \ No newline at end of file + + diff --git a/Source/Tx.Network/Udp/BaseUdpReceiver.cs b/Source/Tx.Network/Udp/BaseUdpReceiver.cs index d670730..b6144a0 100644 --- a/Source/Tx.Network/Udp/BaseUdpReceiver.cs +++ b/Source/Tx.Network/Udp/BaseUdpReceiver.cs @@ -107,7 +107,7 @@ namespace Tx.Network if (!this.disposeCalled) { this.GetDataProcessorAndReceive(); //call a new processor - + //var packet = new IP(socketArgs.Buffer); T packet; var ipPacket = PacketParser.Parse(DateTimeOffset.UtcNow, false, socketArgs.Buffer, 0, socketArgs.Buffer.Length); diff --git a/Source/Tx.Network/key.snk b/Source/Tx.Network/key.snk new file mode 100644 index 0000000..0238575 Binary files /dev/null and b/Source/Tx.Network/key.snk differ diff --git a/Source/Tx.SqlServer/Tx.SqlServer.csproj b/Source/Tx.SqlServer/Tx.SqlServer.csproj index d187d31..eb3ca84 100644 --- a/Source/Tx.SqlServer/Tx.SqlServer.csproj +++ b/Source/Tx.SqlServer/Tx.SqlServer.csproj @@ -1,31 +1,20 @@ - + - net45 - True - ..\key.snk - True - Microsoft - Microsoft - https://github.com/Microsoft/Tx.git - git - https://github.com/Microsoft/Tx/blob/master/license.txt - https://github.com/Microsoft/Tx/ - Copyright © Microsoft. All Rights Reserved - Tx (LINQ to Logs and Traces) components for SQL Server. So far, this incldes Extended Events (XEvent) - Tx Traces Logs Playback Replay XEvent - 2.1.1 - - + net46 + true + key.snk x86 - - x86 - bin\Release\net45\Tx.SqlServer.xml - + + + + + + ..\..\References\XEvent\Microsoft.SqlServer.XE.Core.dll @@ -40,4 +29,5 @@ ..\..\References\XEvent\Microsoft.SqlServer.XEvent.Targets.dll - \ No newline at end of file + + diff --git a/Source/Tx.SqlServer/key.snk b/Source/Tx.SqlServer/key.snk new file mode 100644 index 0000000..0238575 Binary files /dev/null and b/Source/Tx.SqlServer/key.snk differ diff --git a/Source/Tx.Windows/Evtx/EvtxEnumerable.cs b/Source/Tx.Windows.Logs/EvtxEnumerable.cs similarity index 100% rename from Source/Tx.Windows/Evtx/EvtxEnumerable.cs rename to Source/Tx.Windows.Logs/EvtxEnumerable.cs diff --git a/Source/Tx.Windows/Evtx/EvtxExtensions.cs b/Source/Tx.Windows.Logs/EvtxExtensions.cs similarity index 100% rename from Source/Tx.Windows/Evtx/EvtxExtensions.cs rename to Source/Tx.Windows.Logs/EvtxExtensions.cs diff --git a/Source/Tx.Windows/Evtx/EvtxManifestTypeMap.cs b/Source/Tx.Windows.Logs/EvtxManifestTypeMap.cs similarity index 100% rename from Source/Tx.Windows/Evtx/EvtxManifestTypeMap.cs rename to Source/Tx.Windows.Logs/EvtxManifestTypeMap.cs diff --git a/Source/Tx.Windows/Evtx/EvtxObservable.cs b/Source/Tx.Windows.Logs/EvtxObservable.cs similarity index 100% rename from Source/Tx.Windows/Evtx/EvtxObservable.cs rename to Source/Tx.Windows.Logs/EvtxObservable.cs diff --git a/Source/Tx.Windows/Evtx/EvtxTypeMap.cs b/Source/Tx.Windows.Logs/EvtxTypeMap.cs similarity index 100% rename from Source/Tx.Windows/Evtx/EvtxTypeMap.cs rename to Source/Tx.Windows.Logs/EvtxTypeMap.cs diff --git a/Source/Tx.Windows.Logs/InternalsVisibleTo.cs b/Source/Tx.Windows.Logs/InternalsVisibleTo.cs new file mode 100644 index 0000000..972cdd8 --- /dev/null +++ b/Source/Tx.Windows.Logs/InternalsVisibleTo.cs @@ -0,0 +1,16 @@ +// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. + +using System.Runtime.CompilerServices; + +[assembly: + InternalsVisibleTo( + assemblyName: "Tests.Tx, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" + )] +[assembly: + InternalsVisibleTo( + assemblyName: "Tx.Windows.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" + )] +[assembly: + InternalsVisibleTo( + assemblyName: "Tx.Windows.TypeGeneration, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" + )] \ No newline at end of file diff --git a/Source/SetVersion/Properties/AssemblyInfo.cs b/Source/Tx.Windows.Logs/Properties/AssemblyInfo.cs similarity index 85% rename from Source/SetVersion/Properties/AssemblyInfo.cs rename to Source/Tx.Windows.Logs/Properties/AssemblyInfo.cs index dac0962..bdcd4ca 100644 --- a/Source/SetVersion/Properties/AssemblyInfo.cs +++ b/Source/Tx.Windows.Logs/Properties/AssemblyInfo.cs @@ -5,12 +5,12 @@ using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("SetVersion")] +[assembly: AssemblyTitle("Tx.Windows.Logs")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("SetVersion")] -[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyProduct("Tx.Windows.Logs")] +[assembly: AssemblyCopyright("Copyright © 2018")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -20,7 +20,7 @@ using System.Runtime.InteropServices; [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("d4b1be53-01b5-4341-869e-bcbbf7160ebb")] +[assembly: Guid("e881ab95-6779-420f-a90c-e6b3b1486b78")] // Version information for an assembly consists of the following four values: // diff --git a/Source/Tx.Windows.Logs/Tx.Windows.Logs.csproj b/Source/Tx.Windows.Logs/Tx.Windows.Logs.csproj new file mode 100644 index 0000000..94b53da --- /dev/null +++ b/Source/Tx.Windows.Logs/Tx.Windows.Logs.csproj @@ -0,0 +1,78 @@ + + + + + Debug + AnyCPU + {E881AB95-6779-420F-A90C-E6B3B1486B78} + Library + Properties + Tx.Windows.Logs + Tx.Windows.Logs + v4.6 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + true + + + key.snk + + + + + + ..\..\Packages\System.Reactive.4.0.0\lib\net46\System.Reactive.dll + + + + + + + + + + + + + + + + + + + + + + + {6a763f6e-53ed-4c63-bc6f-7735199429cf} + Tx.Core + + + {9e46e15b-2cc0-4a92-a82c-88190f5be5ab} + Tx.Windows + + + + + + + + \ No newline at end of file diff --git a/Source/Tx.Windows.Logs/key.snk b/Source/Tx.Windows.Logs/key.snk new file mode 100644 index 0000000..0238575 Binary files /dev/null and b/Source/Tx.Windows.Logs/key.snk differ diff --git a/Source/Tx.Windows.Logs/packages.config b/Source/Tx.Windows.Logs/packages.config new file mode 100644 index 0000000..ec5ddae --- /dev/null +++ b/Source/Tx.Windows.Logs/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Source/Tx.Windows.TypeGeneration/AssemblyBuilder.cs b/Source/Tx.Windows.TypeGeneration/AssemblyBuilder.cs index 9b07d49..bd68bb7 100644 --- a/Source/Tx.Windows.TypeGeneration/AssemblyBuilder.cs +++ b/Source/Tx.Windows.TypeGeneration/AssemblyBuilder.cs @@ -6,6 +6,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.CSharp; +using System.Reflection; namespace Tx.Windows { diff --git a/Source/Tx.Windows.TypeGeneration/ManifestParser.cs b/Source/Tx.Windows.TypeGeneration/ManifestParser.cs index 3664462..24275d7 100644 --- a/Source/Tx.Windows.TypeGeneration/ManifestParser.cs +++ b/Source/Tx.Windows.TypeGeneration/ManifestParser.cs @@ -575,34 +575,13 @@ using System;"); if (_stringTable == null) return message; - string stringId = message.Substring(9); // skip "$(string." + string stringId = message.Substring(9) // skip "$(string." + .TrimEnd(')'); - if (stringId.Last() == ')') - { - stringId = stringId.Substring(0, stringId.Length - 1); - } - - var elements = _stringTable.Elements() - .Select(s => new - { - Id = s.Attribute(AttributeNames.Id), - Value = s.Attribute(AttributeNames.Value) - }) - .Where(s => s.Id != null && s.Value != null) - .OrderBy(s => s.Id.Value) - .ToArray(); - - var element = elements - .FirstOrDefault(s => s.Id.Value == stringId); - - if (element == null) - { - return message; - } - else - { - return element.Value.Value; - } + return (from s in _stringTable.Elements() + where s.Attribute(AttributeNames.Id).Value == stringId + select s.Attribute(AttributeNames.Value).Value) + .FirstOrDefault(); } private string[] LookupKeywords(XElement evt, XElement keywords) diff --git a/Source/Tx.Windows.TypeGeneration/Properties/Tx.Windows.TypeGeneration.nuspec b/Source/Tx.Windows.TypeGeneration/Properties/Tx.Windows.TypeGeneration.nuspec deleted file mode 100644 index 662cc9f..0000000 --- a/Source/Tx.Windows.TypeGeneration/Properties/Tx.Windows.TypeGeneration.nuspec +++ /dev/null @@ -1,27 +0,0 @@ - - - - Tx.Windows.TypeGeneration - Tx.Windows.TypeGeneration - - 2.0.2 - Tx (LINQ to Logs and Traces) components for generation of C# types representing Event Tracing for Windows (ETW) and Event Log events - Microsoft - Copyright © Microsoft. All Rights Reserved - https://github.com/Microsoft/Tx - https://github.com/Microsoft/Tx/blob/master/license.txt - en-us - Tx Traces Logs Playback Replay ETW - false - - - - - - - - - - - - \ No newline at end of file diff --git a/Source/Tx.Windows.TypeGeneration/Tx.Windows.TypeGeneration.csproj b/Source/Tx.Windows.TypeGeneration/Tx.Windows.TypeGeneration.csproj index 8bc3567..5a16ebc 100644 --- a/Source/Tx.Windows.TypeGeneration/Tx.Windows.TypeGeneration.csproj +++ b/Source/Tx.Windows.TypeGeneration/Tx.Windows.TypeGeneration.csproj @@ -1,30 +1,20 @@ - + - net45 - True - ..\key.snk - False - Copyright © Microsoft. All Rights Reserved - Microsoft - Microsoft - Tx (LINQ to Logs and Traces) components for generation of C# types representing Event Tracing for Windows (ETW) and Event Log events - Tx Traces Logs Playback Replay ETW - git - https://github.com/Microsoft/Tx/blob/master/license.txt - https://github.com/Microsoft/Tx/ - https://github.com/Microsoft/Tx.git - 2.1.1 - - - bin\Release\net45\Tx.Windows.TypeGeneration.xml + netstandard2.0;net46 + true + key.snk + + - - - PreserveNewest - + + + + 4.5.0 + - \ No newline at end of file + + diff --git a/Source/Tx.Windows.TypeGeneration/key.snk b/Source/Tx.Windows.TypeGeneration/key.snk new file mode 100644 index 0000000..0238575 Binary files /dev/null and b/Source/Tx.Windows.TypeGeneration/key.snk differ diff --git a/Source/Tx.Windows/EventFormatter.cs b/Source/Tx.Windows/EventFormatter.cs index ce4ab6e..a1cac28 100644 --- a/Source/Tx.Windows/EventFormatter.cs +++ b/Source/Tx.Windows/EventFormatter.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Linq.Expressions; +using System.Reactive; using System.Reflection; using System.Text; @@ -52,7 +53,7 @@ namespace Tx.Windows private static Expression CompileFormatString(Type type) { - var attribute = type.GetTypeInfo().GetCustomAttribute(); + var attribute = type.GetCustomAttribute(); string format = attribute == null ? type.Name : attribute.FormatString; diff --git a/Source/Tx.Windows/InternalsVisibleTo.cs b/Source/Tx.Windows/InternalsVisibleTo.cs index f540430..972cdd8 100644 --- a/Source/Tx.Windows/InternalsVisibleTo.cs +++ b/Source/Tx.Windows/InternalsVisibleTo.cs @@ -4,9 +4,13 @@ using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo( - "Tx.Windows.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" + assemblyName: "Tests.Tx, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" )] [assembly: InternalsVisibleTo( - "Tx.Windows.TypeGeneration, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" + assemblyName: "Tx.Windows.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" + )] +[assembly: + InternalsVisibleTo( + assemblyName: "Tx.Windows.TypeGeneration, PublicKey=0024000004800000940000000602000000240000525341310004000001000100517789C13E6805DC176AA2AC748FE291FDC43357C7A6F5044A2D979E8C51BAF27FE7CE2DC23B2F06E10DC6D2BBD460BF3756D0D2208B12708E5DD9498493B882E7869CF2E3E48C4B7BC758AE4F882835C559A4082A11051CBF74DDF36E8272FDDE45E3DA6EC2FEA577B6E21F27B45A02F6A5B2D358C4A0FA60ED1407A2BC96CC" )] \ No newline at end of file diff --git a/Source/Tx.Windows/Tx.Windows.csproj b/Source/Tx.Windows/Tx.Windows.csproj index aaf8f53..755289d 100644 --- a/Source/Tx.Windows/Tx.Windows.csproj +++ b/Source/Tx.Windows/Tx.Windows.csproj @@ -1,32 +1,23 @@ - + - net45 - True - ..\key.snk - True - git - https://github.com/Microsoft/Tx.git - https://github.com/Microsoft/Tx/ - https://github.com/Microsoft/Tx/blob/master/license.txt - Copyright © Microsoft. All Rights Reserved - Microsoft - Microsoft - Tx (LINQ to Logs and Traces) components for Windows: ETW, Logs (.evtx), Performance Counters (.blg, .csv, .tsv), IIS Logs in W3C format - Tx Traces Logs Playback ETW W3C - 2.1.1 + netstandard2.0;net46 + true + key.snk + false - - True - bin\Debug\net45\.xml - - - True + + + true + + + + + + - - - - \ No newline at end of file + + diff --git a/Source/Tx.Windows/key.snk b/Source/Tx.Windows/key.snk new file mode 100644 index 0000000..0238575 Binary files /dev/null and b/Source/Tx.Windows/key.snk differ diff --git a/Source/Tx.sln b/Source/Tx.sln index 0129f05..d93ea34 100644 --- a/Source/Tx.sln +++ b/Source/Tx.sln @@ -1,25 +1,25 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.26430.6 +VisualStudioVersion = 15.0.27703.2042 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Core", "Tx.Core\Tx.Core.csproj", "{EDD05A7B-04F9-4179-A317-587D42B6E2CA}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Core", "Tx.Core\Tx.Core.csproj", "{6A763F6E-53ED-4C63-BC6F-7735199429CF}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Network", "Tx.Network\Tx.Network.csproj", "{57DD2DE6-844C-48B0-90EA-A7823AEFFE14}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Network", "Tx.Network\Tx.Network.csproj", "{B92F992A-BC9E-497C-8C79-45462EEF7F05}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Windows", "Tx.Windows\Tx.Windows.csproj", "{ACF1E6AF-AE43-4E04-9153-46D1D58F15F9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Windows", "Tx.Windows\Tx.Windows.csproj", "{9E46E15B-2CC0-4A92-A82C-88190F5BE5AB}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.SqlServer", "Tx.SqlServer\Tx.SqlServer.csproj", "{1ADC080C-A85F-4423-8068-A0D213EBBF4E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Windows.TypeGeneration", "Tx.Windows.TypeGeneration\Tx.Windows.TypeGeneration.csproj", "{5AC73564-F877-443A-9900-B9ABDE657597}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Windows.TypeGeneration", "Tx.Windows.TypeGeneration\Tx.Windows.TypeGeneration.csproj", "{3A1F226B-85FB-4F30-8703-285F13577BD4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Bond", "Tx.Bond\Tx.Bond.csproj", "{CD91748C-849A-464B-8AC4-04978A541188}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.LinqPad", "Tx.LinqPad\Tx.LinqPad.csproj", "{C49836B8-2343-4FE7-875E-EFB58D6FC24D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.SqlServer", "Tx.SqlServer\Tx.SqlServer.csproj", "{5490603B-7723-4FA3-88E5-FE812687E386}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Bond", "Tx.Bond\Tx.Bond.csproj", "{01B8BC42-7B2B-488E-B0AE-113C8F9C1D35}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EtwEventTypeGen", "EtwEventTypeGen\EtwEventTypeGen.csproj", "{A07B7C4C-E05B-4948-9EDB-1A3B759448B3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SetVersion", "SetVersion\SetVersion.csproj", "{D4B1BE53-01B5-4341-869E-BCBBF7160EBB}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.LinqPad", "Tx.Linqpad\Tx.LinqPad.csproj", "{38FCBA13-67D0-47D7-A3B8-F7197A046CD5}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EtwEventTypeGen", "EtwEventTypeGen\EtwEventTypeGen.csproj", "{19EBFB63-AD5C-4FDE-A14B-3A34D5573C06}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Windows.Logs", "Tx.Windows.Logs\Tx.Windows.Logs.csproj", "{E881AB95-6779-420F-A90C-E6B3B1486B78}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -27,44 +27,47 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EDD05A7B-04F9-4179-A317-587D42B6E2CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EDD05A7B-04F9-4179-A317-587D42B6E2CA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EDD05A7B-04F9-4179-A317-587D42B6E2CA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EDD05A7B-04F9-4179-A317-587D42B6E2CA}.Release|Any CPU.Build.0 = Release|Any CPU - {57DD2DE6-844C-48B0-90EA-A7823AEFFE14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {57DD2DE6-844C-48B0-90EA-A7823AEFFE14}.Debug|Any CPU.Build.0 = Debug|Any CPU - {57DD2DE6-844C-48B0-90EA-A7823AEFFE14}.Release|Any CPU.ActiveCfg = Release|Any CPU - {57DD2DE6-844C-48B0-90EA-A7823AEFFE14}.Release|Any CPU.Build.0 = Release|Any CPU - {ACF1E6AF-AE43-4E04-9153-46D1D58F15F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ACF1E6AF-AE43-4E04-9153-46D1D58F15F9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ACF1E6AF-AE43-4E04-9153-46D1D58F15F9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ACF1E6AF-AE43-4E04-9153-46D1D58F15F9}.Release|Any CPU.Build.0 = Release|Any CPU - {1ADC080C-A85F-4423-8068-A0D213EBBF4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1ADC080C-A85F-4423-8068-A0D213EBBF4E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1ADC080C-A85F-4423-8068-A0D213EBBF4E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1ADC080C-A85F-4423-8068-A0D213EBBF4E}.Release|Any CPU.Build.0 = Release|Any CPU - {3A1F226B-85FB-4F30-8703-285F13577BD4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3A1F226B-85FB-4F30-8703-285F13577BD4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3A1F226B-85FB-4F30-8703-285F13577BD4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3A1F226B-85FB-4F30-8703-285F13577BD4}.Release|Any CPU.Build.0 = Release|Any CPU - {C49836B8-2343-4FE7-875E-EFB58D6FC24D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C49836B8-2343-4FE7-875E-EFB58D6FC24D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C49836B8-2343-4FE7-875E-EFB58D6FC24D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C49836B8-2343-4FE7-875E-EFB58D6FC24D}.Release|Any CPU.Build.0 = Release|Any CPU - {01B8BC42-7B2B-488E-B0AE-113C8F9C1D35}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {01B8BC42-7B2B-488E-B0AE-113C8F9C1D35}.Debug|Any CPU.Build.0 = Debug|Any CPU - {01B8BC42-7B2B-488E-B0AE-113C8F9C1D35}.Release|Any CPU.ActiveCfg = Release|Any CPU - {01B8BC42-7B2B-488E-B0AE-113C8F9C1D35}.Release|Any CPU.Build.0 = Release|Any CPU - {D4B1BE53-01B5-4341-869E-BCBBF7160EBB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D4B1BE53-01B5-4341-869E-BCBBF7160EBB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D4B1BE53-01B5-4341-869E-BCBBF7160EBB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D4B1BE53-01B5-4341-869E-BCBBF7160EBB}.Release|Any CPU.Build.0 = Release|Any CPU - {19EBFB63-AD5C-4FDE-A14B-3A34D5573C06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {19EBFB63-AD5C-4FDE-A14B-3A34D5573C06}.Debug|Any CPU.Build.0 = Debug|Any CPU - {19EBFB63-AD5C-4FDE-A14B-3A34D5573C06}.Release|Any CPU.ActiveCfg = Release|Any CPU - {19EBFB63-AD5C-4FDE-A14B-3A34D5573C06}.Release|Any CPU.Build.0 = Release|Any CPU + {6A763F6E-53ED-4C63-BC6F-7735199429CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6A763F6E-53ED-4C63-BC6F-7735199429CF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6A763F6E-53ED-4C63-BC6F-7735199429CF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6A763F6E-53ED-4C63-BC6F-7735199429CF}.Release|Any CPU.Build.0 = Release|Any CPU + {B92F992A-BC9E-497C-8C79-45462EEF7F05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B92F992A-BC9E-497C-8C79-45462EEF7F05}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B92F992A-BC9E-497C-8C79-45462EEF7F05}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B92F992A-BC9E-497C-8C79-45462EEF7F05}.Release|Any CPU.Build.0 = Release|Any CPU + {9E46E15B-2CC0-4A92-A82C-88190F5BE5AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9E46E15B-2CC0-4A92-A82C-88190F5BE5AB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9E46E15B-2CC0-4A92-A82C-88190F5BE5AB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9E46E15B-2CC0-4A92-A82C-88190F5BE5AB}.Release|Any CPU.Build.0 = Release|Any CPU + {5AC73564-F877-443A-9900-B9ABDE657597}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5AC73564-F877-443A-9900-B9ABDE657597}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5AC73564-F877-443A-9900-B9ABDE657597}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5AC73564-F877-443A-9900-B9ABDE657597}.Release|Any CPU.Build.0 = Release|Any CPU + {CD91748C-849A-464B-8AC4-04978A541188}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD91748C-849A-464B-8AC4-04978A541188}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD91748C-849A-464B-8AC4-04978A541188}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CD91748C-849A-464B-8AC4-04978A541188}.Release|Any CPU.Build.0 = Release|Any CPU + {5490603B-7723-4FA3-88E5-FE812687E386}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5490603B-7723-4FA3-88E5-FE812687E386}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5490603B-7723-4FA3-88E5-FE812687E386}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5490603B-7723-4FA3-88E5-FE812687E386}.Release|Any CPU.Build.0 = Release|Any CPU + {A07B7C4C-E05B-4948-9EDB-1A3B759448B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A07B7C4C-E05B-4948-9EDB-1A3B759448B3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A07B7C4C-E05B-4948-9EDB-1A3B759448B3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A07B7C4C-E05B-4948-9EDB-1A3B759448B3}.Release|Any CPU.Build.0 = Release|Any CPU + {38FCBA13-67D0-47D7-A3B8-F7197A046CD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {38FCBA13-67D0-47D7-A3B8-F7197A046CD5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {38FCBA13-67D0-47D7-A3B8-F7197A046CD5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {38FCBA13-67D0-47D7-A3B8-F7197A046CD5}.Release|Any CPU.Build.0 = Release|Any CPU + {E881AB95-6779-420F-A90C-E6B3B1486B78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E881AB95-6779-420F-A90C-E6B3B1486B78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E881AB95-6779-420F-A90C-E6B3B1486B78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E881AB95-6779-420F-A90C-E6B3B1486B78}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5EBF9A07-0259-4055-BBC3-B17D336C06ED} + EndGlobalSection EndGlobal diff --git a/Source/nuget.config b/Source/nuget.config new file mode 100644 index 0000000..104cd39 --- /dev/null +++ b/Source/nuget.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Test/LinqPad/nuget.config b/Test/LinqPad/nuget.config new file mode 100644 index 0000000..8f77571 --- /dev/null +++ b/Test/LinqPad/nuget.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Test/PerfBaseline/nuget.config b/Test/PerfBaseline/nuget.config new file mode 100644 index 0000000..8f77571 --- /dev/null +++ b/Test/PerfBaseline/nuget.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Test/Tx.Bond.Tests/Tx.Bond.Tests.csproj b/Test/Tx.Bond.Tests/Tx.Bond.Tests.csproj index 9ac9943..134d14a 100644 --- a/Test/Tx.Bond.Tests/Tx.Bond.Tests.csproj +++ b/Test/Tx.Bond.Tests/Tx.Bond.Tests.csproj @@ -1,13 +1,13 @@  - net45 + net46 - - - + + + @@ -16,4 +16,13 @@ + + + ..\..\References\DESKTOPCLR45\Bond.dll + + + ..\..\References\DESKTOPCLR45\Bond.Attributes.dll + + + diff --git a/Test/Tx.Core.Tests/Tx.Core.Tests.csproj b/Test/Tx.Core.Tests/Tx.Core.Tests.csproj index bd9c300..10c0226 100644 --- a/Test/Tx.Core.Tests/Tx.Core.Tests.csproj +++ b/Test/Tx.Core.Tests/Tx.Core.Tests.csproj @@ -1,14 +1,14 @@  - netcoreapp1.1;net45 + netcoreapp2.0;net46 - - - - + + + + diff --git a/Test/Tx.Core.Tests/nuget.config b/Test/Tx.Core.Tests/nuget.config new file mode 100644 index 0000000..8f77571 --- /dev/null +++ b/Test/Tx.Core.Tests/nuget.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Test/Tx.Network.Tests/Tx.Network.Tests.csproj b/Test/Tx.Network.Tests/Tx.Network.Tests.csproj index 76443d8..d435dc9 100644 --- a/Test/Tx.Network.Tests/Tx.Network.Tests.csproj +++ b/Test/Tx.Network.Tests/Tx.Network.Tests.csproj @@ -1,15 +1,15 @@  - - netcoreapp1.1;net45 - True - ..\..\Source\key.snk + + netcoreapp2.0;net46 + true + key.snk - - - + + + diff --git a/Test/Tx.Tests.sln b/Test/Tx.Tests.sln index f69b7b1..63f8ad7 100644 --- a/Test/Tx.Tests.sln +++ b/Test/Tx.Tests.sln @@ -3,28 +3,30 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.26430.6 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Core.Tests", "Tx.Core.Tests\Tx.Core.Tests.csproj", "{58AFB236-9BEC-4FA6-8EF3-A937AD619D0D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Core.Tests", "Tx.Core.Tests\Tx.Core.Tests.csproj", "{58AFB236-9BEC-4FA6-8EF3-A937AD619D0D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Core", "..\Source\Tx.Core\Tx.Core.csproj", "{6D4419B5-4F59-4666-991F-23D35A0C76FF}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Network", "..\Source\Tx.Network\Tx.Network.csproj", "{022862F8-D9EF-4A2D-9790-D9DA89B04CFF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Network.Tests", "Tx.Network.Tests\Tx.Network.Tests.csproj", "{26D16316-475E-4B64-9937-F99719BBCB31}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Network.Tests", "Tx.Network.Tests\Tx.Network.Tests.csproj", "{26D16316-475E-4B64-9937-F99719BBCB31}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Windows", "..\Source\Tx.Windows\Tx.Windows.csproj", "{BEC073AC-01E4-4158-AB27-D28DE542E3F7}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Windows", "..\Source\Tx.Windows\Tx.Windows.csproj", "{BEC073AC-01E4-4158-AB27-D28DE542E3F7}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Windows.Tests", "Tx.Windows.Tests\Tx.Windows.Tests.csproj", "{1580A387-C94F-40A5-84BF-6E1ADC6EE9CD}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Windows.Tests", "Tx.Windows.Tests\Tx.Windows.Tests.csproj", "{1580A387-C94F-40A5-84BF-6E1ADC6EE9CD}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.SqlServer", "..\Source\Tx.SqlServer\Tx.SqlServer.csproj", "{4F00AE91-FFAF-4150-9E4D-ACCA532B3953}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.SqlServer", "..\Source\Tx.SqlServer\Tx.SqlServer.csproj", "{4F00AE91-FFAF-4150-9E4D-ACCA532B3953}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Bond", "..\Source\Tx.Bond\Tx.Bond.csproj", "{4060E404-8ADD-4E19-8FBA-06D5A8121BBA}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Bond", "..\Source\Tx.Bond\Tx.Bond.csproj", "{4060E404-8ADD-4E19-8FBA-06D5A8121BBA}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Bond.Tests", "Tx.Bond.Tests\Tx.Bond.Tests.csproj", "{2604AC3D-1F61-4B73-85E8-74BC00E126F7}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Bond.Tests", "Tx.Bond.Tests\Tx.Bond.Tests.csproj", "{2604AC3D-1F61-4B73-85E8-74BC00E126F7}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Windows.TypeGeneration", "..\Source\Tx.Windows.TypeGeneration\Tx.Windows.TypeGeneration.csproj", "{5DA070F5-72F7-4140-B8C2-71D0F8AD2C12}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.Windows.TypeGeneration", "..\Source\Tx.Windows.TypeGeneration\Tx.Windows.TypeGeneration.csproj", "{5DA070F5-72F7-4140-B8C2-71D0F8AD2C12}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tx.LinqPad", "..\Source\Tx.LinqPad\Tx.LinqPad.csproj", "{389F5864-DBF2-462D-8DC1-E1649AAA23BE}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tx.Windows.Logs", "..\Source\Tx.Windows.Logs\Tx.Windows.Logs.csproj", "{E881AB95-6779-420F-A90C-E6B3B1486B78}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -75,8 +77,15 @@ Global {389F5864-DBF2-462D-8DC1-E1649AAA23BE}.Debug|Any CPU.Build.0 = Debug|Any CPU {389F5864-DBF2-462D-8DC1-E1649AAA23BE}.Release|Any CPU.ActiveCfg = Release|Any CPU {389F5864-DBF2-462D-8DC1-E1649AAA23BE}.Release|Any CPU.Build.0 = Release|Any CPU + {E881AB95-6779-420F-A90C-E6B3B1486B78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E881AB95-6779-420F-A90C-E6B3B1486B78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E881AB95-6779-420F-A90C-E6B3B1486B78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E881AB95-6779-420F-A90C-E6B3B1486B78}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5F323FFD-4A83-40D3-82E5-99C90F6DBD3F} + EndGlobalSection EndGlobal diff --git a/Test/Tx.Windows.Tests/Tx.Windows.Tests.csproj b/Test/Tx.Windows.Tests/Tx.Windows.Tests.csproj index 4ed9428..47a4326 100644 --- a/Test/Tx.Windows.Tests/Tx.Windows.Tests.csproj +++ b/Test/Tx.Windows.Tests/Tx.Windows.Tests.csproj @@ -1,19 +1,20 @@  - net45 - True - ..\..\Source\key.snk + net46 + true + key.snk - - - + + + + diff --git a/Test/nuget.config b/Test/nuget.config new file mode 100644 index 0000000..104cd39 --- /dev/null +++ b/Test/nuget.config @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file