xamarin-macios/tests/generator/generic-strong-dictionary.cs

19 строки
406 B
C#

using Foundation;
using ObjCRuntime;
namespace Test
{
[StrongDictionary ("AdvertisementDataKeys")]
interface AdvertisementData {
// property under tests, the generator should create a compilable property
NSDictionary <CBUUID, NSData> ServiceData { get; set; }
}
[Static, Internal]
interface AdvertisementDataKeys {
[Field ("MyFooFieldA", "libFoo.a")]
NSString ServiceDataKey { get; }
}
}