|
1 |
| - |
2 | 1 | namespace Microsoft.Maui.Controls.PlatformConfiguration
|
3 | 2 | {
|
4 |
| - /// <include file="../../../docs/Microsoft.Maui.Controls.PlatformConfiguration/Android.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.Android']/Docs/*" /> |
| 3 | + /// <summary> |
| 4 | + /// Marker class that identifies the Android platform. |
| 5 | + /// </summary> |
| 6 | + /// <remarks> |
| 7 | + /// Developers specifiy the type name of this marker class to the <see cref="IElementConfiguration{TElement}.On{T}" /> method to specify the underlying Android control on which to run a platform-specific effect. |
| 8 | + /// </remarks> |
5 | 9 | public sealed class Android : IConfigPlatform { }
|
6 |
| - /// <include file="../../../docs/Microsoft.Maui.Controls.PlatformConfiguration/iOS.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.iOS']/Docs/*" /> |
| 10 | + |
| 11 | + /// <summary> |
| 12 | + /// Marker class that identifies the iOS platform. |
| 13 | + /// </summary> |
| 14 | + /// <remarks> |
| 15 | + /// Developers specify the type name of this marker class to the <see cref = "IElementConfiguration{TElement}.On{T}" /> method to specify the underlying iOS control on which to run a platform-specific effect. |
| 16 | + /// </remarks> |
7 | 17 | public sealed class iOS : IConfigPlatform { }
|
8 |
| - /// <include file="../../../docs/Microsoft.Maui.Controls.PlatformConfiguration/Windows.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.Windows']/Docs/*" /> |
| 18 | + |
| 19 | + /// <summary> |
| 20 | + /// Marker class that identifies the Windows platform. |
| 21 | + /// </summary> |
| 22 | + /// <remarks> |
| 23 | + /// Developers specify the type name of this marker class to the <see cref = "IElementConfiguration{TElement}.On{T}" /> method to specify the underlying Windows control on which to run a platform-specific effect. |
| 24 | + /// </remarks> |
9 | 25 | public sealed class Windows : IConfigPlatform { }
|
10 |
| - /// <include file="../../../docs/Microsoft.Maui.Controls.PlatformConfiguration/Tizen.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.Tizen']/Docs/*" /> |
| 26 | + |
| 27 | + /// <summary> |
| 28 | + /// Marker class that identifies the Tizen platform. |
| 29 | + /// </summary> |
| 30 | + /// <remarks> |
| 31 | + /// Developers specify the type name of this marker class to the <see cref = "IElementConfiguration{TElement}.On{T}" /> method to specify the underlying Tizen control on which to run a platform-specific effect. |
| 32 | + /// </remarks> |
11 | 33 | public sealed class Tizen : IConfigPlatform { }
|
12 |
| - /// <include file="../../../docs/Microsoft.Maui.Controls.PlatformConfiguration/macOS.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.macOS']/Docs/*" /> |
| 34 | + |
| 35 | + /// <summary> |
| 36 | + /// Marker class that identifies the macOS platform. |
| 37 | + /// </summary> |
| 38 | + /// <remarks> |
| 39 | + /// Developers specify the type name of this marker class to the <see cref = "IElementConfiguration{TElement}.On{T}" /> method to specify the underlying macOS control on which to run a platform-specific effect. |
| 40 | + /// </remarks> |
13 | 41 | public sealed class macOS : IConfigPlatform { }
|
14 |
| - /// <include file="../../../docs/Microsoft.Maui.Controls.PlatformConfiguration/GTK.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.GTK']/Docs/*" /> |
| 42 | + |
| 43 | + /// <summary> |
| 44 | + /// Marker class that identifies the Linux platform. |
| 45 | + /// </summary> |
| 46 | + /// /// <remarks> |
| 47 | + /// Developers specify the type name of this marker class to the <see cref = "IElementConfiguration{TElement}.On{T}" /> method to specify the underlying GTK control on which to run a platform-specific effect. |
| 48 | + /// </remarks> |
15 | 49 | public sealed class GTK : IConfigPlatform { }
|
16 | 50 | }
|
0 commit comments