forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMetadataTests_IMetadataView.cs
More file actions
87 lines (77 loc) · 1.8 KB
/
MetadataTests_IMetadataView.cs
File metadata and controls
87 lines (77 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace System.ComponentModel.Composition
{
public interface ITrans_StronglyTypedStructure
{
string String1 { get; }
string String2 { get; }
int[] Numbers { get; }
CreationPolicy Policy { get; }
Type Type { get; }
}
public interface ITrans_AddinMetadata
{
string Name { get; }
string Version { get; }
string Id { get; }
}
public interface ITrans_MetadataTests_CustomMetadata
{
bool PropertyName { get; }
}
public interface ITrans_MetadataTests_MetadataView
{
string Value
{
get;
}
}
public interface ITrans_MetadataTests_MetadataView2 : ITrans_MetadataTests_MetadataView
{
new int Value
{
get;
}
}
public interface ITrans_MetadataTests_MetadataView3 : ITrans_MetadataTests_MetadataView
{
string Value2
{
get;
}
}
public interface ITrans_MetadataTests_MetadataViewWithPropertySetter
{
string Value
{
get;
set;
}
}
public interface ITrans_MetadataTests_MetadataViewWithMethod
{
string Value
{
get;
}
void Method();
}
public interface ITrans_MetadataTests_MetadataViewWithEvent
{
string Value
{
get;
}
event EventHandler TestEvent;
}
public interface ITrans_MetadataTests_MetadataViewWithIndexer
{
string Value
{
get;
}
string this[object o] { get; }
}
}