summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IPlatformServices.cs
diff options
context:
space:
mode:
authorkingces95 <kingces95@users.noreply.github.com>2017-03-09 13:38:06 -0500
committerJason Smith <jason.smith@xamarin.com>2017-03-09 10:38:06 -0800
commitb9b9d2536ff0cd6ae4526356d663706c721e481f (patch)
tree40778d441da74f47eb910067e0dad77d15bbb34a /Xamarin.Forms.Core/IPlatformServices.cs
parent90ece3d38d3f6d6d2bbdd28b12a29e78c0feedc4 (diff)
downloadxamarin-forms-b9b9d2536ff0cd6ae4526356d663706c721e481f.tar.gz
xamarin-forms-b9b9d2536ff0cd6ae4526356d663706c721e481f.tar.bz2
xamarin-forms-b9b9d2536ff0cd6ae4526356d663706c721e481f.zip
Add [EditorBrowsable(EditorBrowsableState.Never)] to public classes/interfaces in XF.Internals (#806)
Diffstat (limited to 'Xamarin.Forms.Core/IPlatformServices.cs')
-rw-r--r--Xamarin.Forms.Core/IPlatformServices.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IPlatformServices.cs b/Xamarin.Forms.Core/IPlatformServices.cs
index 89465eb1..73c4dcc6 100644
--- a/Xamarin.Forms.Core/IPlatformServices.cs
+++ b/Xamarin.Forms.Core/IPlatformServices.cs
@@ -1,4 +1,5 @@
using System;
+using System.ComponentModel;
using System.IO;
using System.Reflection;
using System.Threading;
@@ -7,6 +8,7 @@ using Xamarin.Forms.Internals;
namespace Xamarin.Forms.Internals
{
+ [EditorBrowsable(EditorBrowsableState.Never)]
public interface IPlatformServices
{
bool IsInvokeRequired { get; }