Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
Missed issues with property accessibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Wilcox committed Sep 11, 2018
1 parent 3fea9cc commit 9561807
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
Expand Up @@ -13,7 +13,7 @@ public class Geopoint
{
private BasicGeoposition basicGeoposition;

private Windows.Devices.Geolocation.Geopoint UwpInstance { get; }
internal Windows.Devices.Geolocation.Geopoint UwpInstance { get; }

/// <summary>
/// Initializes a new instance of the <see cref="Geopoint"/> class, a
Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.Toolkit.Win32.UI.Controls.Interop.WinRT
/// </summary>
public class MediaPlayer
{
private Windows.Media.Playback.MediaPlayer UwpInstance { get; }
internal Windows.Media.Playback.MediaPlayer UwpInstance { get; }

/// <summary>
/// Initializes a new instance of the <see cref="MediaPlayer"/> class, a
Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.Toolkit.Win32.UI.Controls.Interop.WinRT
/// </summary>
public class MediaTransportControls
{
private Windows.UI.Xaml.Controls.MediaTransportControls UwpInstance { get; }
internal Windows.UI.Xaml.Controls.MediaTransportControls UwpInstance { get; }

/// <summary>
/// Initializes a new instance of the <see cref="MediaTransportControls"/> class, a
Expand Down
Expand Up @@ -9,7 +9,8 @@ namespace Microsoft.Toolkit.Win32.UI.Controls.Interop.WinRT
/// </summary>
public class ScalarTransition
{
private
private Windows.UI.Xaml.ScalarTransition UwpInstance { get; }

/// <summary>
/// Initializes a new instance of the <see cref="ScalarTransition"/> class, a
/// Wpf-enabled wrapper for <see cref="Windows.UI.Xaml.ScalarTransition"/>
Expand Down
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.Toolkit.Win32.UI.Controls.Interop.WinRT
/// </summary>
public class Transform
{
private Windows.UI.Xaml.Media.Transform UwpInstance { get; }
internal Windows.UI.Xaml.Media.Transform UwpInstance { get; }

/// <summary>
/// Initializes a new instance of the <see cref="Transform"/> class, a
Expand Down

0 comments on commit 9561807

Please sign in to comment.