summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml/XmlnsHelper.cs
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-11-17 20:31:05 +0100
committerGitHub <noreply@github.com>2016-11-17 20:31:05 +0100
commit054ecf2704ac5d736ffb97c2932e1e078041008a (patch)
tree6e11e80a370b9ed96c473a03ecc4bbdfefa62cbe /Xamarin.Forms.Xaml/XmlnsHelper.cs
parent122f0e3e6060711d6c3b2b8523236b8a057434df (diff)
downloadxamarin-forms-054ecf2704ac5d736ffb97c2932e1e078041008a.tar.gz
xamarin-forms-054ecf2704ac5d736ffb97c2932e1e078041008a.tar.bz2
xamarin-forms-054ecf2704ac5d736ffb97c2932e1e078041008a.zip
[Xaml] cleanup xmlns usage, add XmlnsDefinition (#531)
* [Xaml] cleanup xmlns usage, add XmlnsDefinition * docs
Diffstat (limited to 'Xamarin.Forms.Xaml/XmlnsHelper.cs')
-rw-r--r--Xamarin.Forms.Xaml/XmlnsHelper.cs13
1 files changed, 1 insertions, 12 deletions
diff --git a/Xamarin.Forms.Xaml/XmlnsHelper.cs b/Xamarin.Forms.Xaml/XmlnsHelper.cs
index e3e37de4..e29dbc0c 100644
--- a/Xamarin.Forms.Xaml/XmlnsHelper.cs
+++ b/Xamarin.Forms.Xaml/XmlnsHelper.cs
@@ -2,19 +2,8 @@ using System;
namespace Xamarin.Forms.Xaml
{
- internal static class XmlnsHelper
+ static class XmlnsHelper
{
- public static bool IsCustom(string ns)
- {
- switch (ns)
- {
- case "":
- case "http://xamarin.com/schemas/2014/forms":
- return false;
- }
- return true;
- }
-
public static string ParseNamespaceFromXmlns(string xmlns)
{
string typeName;