Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ComponentModelTestTypes.cs « Composition « ComponentModel « System « ComponentModelUnitTest « Tests « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acef102c738efc7ea8af6bae646dd8c11c6fa035 (plain)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;
using System.Collections.ObjectModel;
using System.ComponentModel.Composition;

namespace System.ComponentModel.Composition
{
    public class CallbackExecuteCodeDuringCompose
    {
        public CallbackExecuteCodeDuringCompose(Action callback)
        {
            this.callback = callback;
        }

        [Export("MyOwnCallbackContract")]
        public string ExportValue
        {
            get
            {
                callback();
                return string.Empty;
            }
        }

        [Import("MyOwnCallbackContract")]
        public string ImportValue { get; set; }
        private Action callback;
    }

    public class CallbackImportNotify : IPartImportsSatisfiedNotification
    {
        private Action callback;
        public CallbackImportNotify(Action callback)
        {
            this.callback = callback;
        }

        [Import(AllowDefault=true)]
        public ICompositionService ImportSomethingSoIGetImportCompletedCalled { get; set; }

        public void OnImportsSatisfied()
        {
            this.callback();
        }
    }

    public class ExportValueTypeFactory
    {
        [Export("{AssemblyCatalogResolver}FactoryValueType")]
        public int Value
        {
            get
            {
                return 18;
            }
        }
    }


    public class ExportValueTypeSingleton
    {
        [Export("{AssemblyCatalogResolver}SingletonValueType")]
        public int Value
        {
            get
            {
                return 17;
            }
        }
    }


    public class Int32CollectionImporter
    {

        public Int32CollectionImporter()
        {
            Values = new Collection<int>();
        }

        [ImportMany("Value")]
        public Collection<int> Values { get; private set; }
    }

    [PartNotDiscoverable]
    public class Int32Exporter
    {

        public Int32Exporter(int value) 
        {
            Value = value;
        }

        [Export("Value")]
        public int Value { get; set; }

    }

    [PartNotDiscoverable]
    public class Int32ExporterInternal
    {

        public Int32ExporterInternal(int value) 
        {
            Value = value;
        }

        [Export("Value")]
        public int Value { get; set; }

    }

    public class Int32Importer
    {

        public Int32Importer()
        {
        }

        [Import("Value", AllowRecomposition = true)]
        public int Value { get; set; }
    }

    public class Int32ImporterInternal
    {

        public Int32ImporterInternal()
        {
        }

        [Import("Value")]
        public int Value { get; set; }
    }


}