|
@@ -1,4 +1,4 @@
|
|
|
-[assembly: System.CLSCompliant(true)]
|
|
|
+[assembly: System.CLSCompliant(true)]
|
|
|
[assembly: System.Resources.NeutralResourcesLanguage("en-US")]
|
|
|
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo(@"Tests.System.Reactive, PublicKey=00240000048000009400000006020000002400005253413100040000010001008f5cff058631087031f8350f30a36fa078027e5df2316b564352dc9eb7af7ce856016d3c5e9d058036fe73bb5c83987bd3fc0793fbe25d633cc4f37c2bd5f1d717cd2a81661bec08f0971dc6078e17bde372b89005e7738a0ebd501b896ca3e8315270ff64df7809dd912c372df61785a5085b3553b7872e39b1b1cc0ff5a6bc")]
|
|
|
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo(@"Tests.System.Reactive.Uwp.DeviceRunner, PublicKey=00240000048000009400000006020000002400005253413100040000010001008f5cff058631087031f8350f30a36fa078027e5df2316b564352dc9eb7af7ce856016d3c5e9d058036fe73bb5c83987bd3fc0793fbe25d633cc4f37c2bd5f1d717cd2a81661bec08f0971dc6078e17bde372b89005e7738a0ebd501b896ca3e8315270ff64df7809dd912c372df61785a5085b3553b7872e39b1b1cc0ff5a6bc")]
|
|
@@ -54,6 +54,7 @@ namespace System.Reactive
|
|
|
public EventPattern(TSender? sender, TEventArgs e) { }
|
|
|
public TEventArgs EventArgs { get; }
|
|
|
public TSender Sender { get; }
|
|
|
+ public void Deconstruct(out TSender sender, out TEventArgs e) { }
|
|
|
public bool Equals(System.Reactive.EventPattern<TSender, TEventArgs>? other) { }
|
|
|
public override bool Equals(object? obj) { }
|
|
|
public override int GetHashCode() { }
|
|
@@ -189,6 +190,7 @@ namespace System.Reactive
|
|
|
public TimeInterval(T value, System.TimeSpan interval) { }
|
|
|
public System.TimeSpan Interval { get; }
|
|
|
public T Value { get; }
|
|
|
+ public void Deconstruct(out T value, out System.TimeSpan interval) { }
|
|
|
public bool Equals(System.Reactive.TimeInterval<T> other) { }
|
|
|
public override bool Equals(object? obj) { }
|
|
|
public override int GetHashCode() { }
|
|
@@ -206,6 +208,7 @@ namespace System.Reactive
|
|
|
public Timestamped(T value, System.DateTimeOffset timestamp) { }
|
|
|
public System.DateTimeOffset Timestamp { get; }
|
|
|
public T Value { get; }
|
|
|
+ public void Deconstruct(out T value, out System.DateTimeOffset timestamp) { }
|
|
|
public bool Equals(System.Reactive.Timestamped<T> other) { }
|
|
|
public override bool Equals(object? obj) { }
|
|
|
public override int GetHashCode() { }
|
|
@@ -3149,4 +3152,4 @@ namespace System.Runtime.CompilerServices
|
|
|
where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { }
|
|
|
public static System.Runtime.CompilerServices.TaskObservableMethodBuilder<T> Create() { }
|
|
|
}
|
|
|
-}
|
|
|
+}
|