Skip to content

Commit eee861b

Browse files
feat: Implemented MarkupExtensionReturnTypeAttribute
1 parent 262d3b5 commit eee861b

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

src/Uno.UI/Generated/3.0.0.0/Windows.UI.Xaml.Markup/MarkupExtensionReturnTypeAttribute.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
#pragma warning disable 114 // new keyword hiding
33
namespace Windows.UI.Xaml.Markup
44
{
5-
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
5+
#if false
66
[global::Uno.NotImplemented]
77
#endif
88
public partial class MarkupExtensionReturnTypeAttribute : global::System.Attribute
99
{
10-
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
10+
#if false
1111
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "NET461", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
1212
public MarkupExtensionReturnTypeAttribute() : base()
1313
{
1414
global::Windows.Foundation.Metadata.ApiInformation.TryRaiseNotImplemented("Windows.UI.Xaml.Markup.MarkupExtensionReturnTypeAttribute", "MarkupExtensionReturnTypeAttribute.MarkupExtensionReturnTypeAttribute()");
1515
}
1616
#endif
1717
// Forced skipping of method Windows.UI.Xaml.Markup.MarkupExtensionReturnTypeAttribute.MarkupExtensionReturnTypeAttribute()
18-
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
18+
#if false
1919
public global::System.Type ReturnType;
2020
#endif
2121
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System;
2+
using Windows.Foundation.Metadata;
3+
4+
namespace Windows.UI.Xaml.Markup
5+
{
6+
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
7+
[WebHostHidden]
8+
public sealed partial class MarkupExtensionReturnTypeAttribute : Attribute
9+
{
10+
public MarkupExtensionReturnTypeAttribute()
11+
{
12+
}
13+
14+
public Type ReturnType;
15+
}
16+
}

0 commit comments

Comments
 (0)