Skip to content

Commit

Permalink
Move android platform documentation out of XML file
Browse files Browse the repository at this point in the history
  • Loading branch information
Diana Soltani committed Aug 20, 2024
1 parent f40b6c7 commit bb8e509
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@
<InterfaceName>Microsoft.Maui.Controls.IConfigPlatform</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<summary>Marker class that identifies the Android platform.</summary>
<remarks>
<para>Developers specify the type name of this marker class to the <see cref="M:Microsoft.Maui.Controls.IElementConfiguration`1.On``1" /> method to specify the underlying Android control on which to run a platform-specific effect.</para>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Android ();" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@

namespace Microsoft.Maui.Controls.PlatformConfiguration
{
/// <include file="../../../docs/Microsoft.Maui.Controls.PlatformConfiguration/Android.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.Android']/Docs/*" />
/// <summary>
/// Marker class that identifies the Android platform.
/// </summary>
/// <remarks>
/// Developers specifiy the type name of this marker class to the <see cref="M:Microsoft.Maui.Controls.IElementConfiguration`1.On``1" /> method to specify the underlying Android control on which to run a platform-specific effect.
/// </remarks>
public sealed class Android : IConfigPlatform { }
/// <include file="../../../docs/Microsoft.Maui.Controls.PlatformConfiguration/iOS.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.iOS']/Docs/*" />
public sealed class iOS : IConfigPlatform { }
Expand Down

0 comments on commit bb8e509

Please sign in to comment.