Skip to content

Commit

Permalink
feat: Implemented MarkupExtensionReturnTypeAttribute
Browse files Browse the repository at this point in the history
  • Loading branch information
VitezslavImrysek committed Jul 9, 2021
1 parent 262d3b5 commit eee861b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
#pragma warning disable 114 // new keyword hiding
namespace Windows.UI.Xaml.Markup
{
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
#if false
[global::Uno.NotImplemented]
#endif
public partial class MarkupExtensionReturnTypeAttribute : global::System.Attribute
{
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
#if false
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "NET461", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
public MarkupExtensionReturnTypeAttribute() : base()
{
global::Windows.Foundation.Metadata.ApiInformation.TryRaiseNotImplemented("Windows.UI.Xaml.Markup.MarkupExtensionReturnTypeAttribute", "MarkupExtensionReturnTypeAttribute.MarkupExtensionReturnTypeAttribute()");
}
#endif
// Forced skipping of method Windows.UI.Xaml.Markup.MarkupExtensionReturnTypeAttribute.MarkupExtensionReturnTypeAttribute()
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
#if false
public global::System.Type ReturnType;
#endif
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using Windows.Foundation.Metadata;

namespace Windows.UI.Xaml.Markup
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
[WebHostHidden]
public sealed partial class MarkupExtensionReturnTypeAttribute : Attribute
{
public MarkupExtensionReturnTypeAttribute()
{
}

public Type ReturnType;
}
}

0 comments on commit eee861b

Please sign in to comment.