Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,10 @@ namespace ReactiveUI
TSender Sender { get; }
TValue Value { get; }
}
public interface IPlatformOperations
{
string? GetOrientation();
}
public interface IPropertyBinderImplementation : Splat.IEnableLogger
{
[return: System.Runtime.CompilerServices.TupleElementNames(new string[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,10 @@ namespace ReactiveUI
TSender Sender { get; }
TValue Value { get; }
}
public interface IPlatformOperations
{
string? GetOrientation();
}
public interface IPropertyBinderImplementation : Splat.IEnableLogger
{
[return: System.Runtime.CompilerServices.TupleElementNames(new string[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,10 @@ namespace ReactiveUI
TSender Sender { get; }
TValue Value { get; }
}
public interface IPlatformOperations
{
string? GetOrientation();
}
public interface IPropertyBinderImplementation : Splat.IEnableLogger
{
[return: System.Runtime.CompilerServices.TupleElementNames(new string[] {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace ReactiveUI.Winforms
public int GetAffinityForObjects(System.Type fromType, System.Type toType) { }
public object PerformSet(object? toTarget, object? newValue, object?[]? arguments) { }
}
public class PlatformOperations
public class PlatformOperations : ReactiveUI.IPlatformOperations
{
public PlatformOperations() { }
public string? GetOrientation() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace ReactiveUI.Winforms
public int GetAffinityForObjects(System.Type fromType, System.Type toType) { }
public object PerformSet(object? toTarget, object? newValue, object?[]? arguments) { }
}
public class PlatformOperations
public class PlatformOperations : ReactiveUI.IPlatformOperations
{
public PlatformOperations() { }
public string? GetOrientation() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace ReactiveUI.Winforms
public int GetAffinityForObjects(System.Type fromType, System.Type toType) { }
public object PerformSet(object? toTarget, object? newValue, object?[]? arguments) { }
}
public class PlatformOperations
public class PlatformOperations : ReactiveUI.IPlatformOperations
{
public PlatformOperations() { }
public string? GetOrientation() { }
Expand Down
2 changes: 1 addition & 1 deletion src/ReactiveUI/Interfaces/IPlatformOperations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace ReactiveUI
/// <summary>
/// Additional details implemented by the different ReactiveUI platform projects.
/// </summary>
internal interface IPlatformOperations
public interface IPlatformOperations
{
/// <summary>
/// Gets a descriptor that describes (if applicable) the orientation
Expand Down