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

CustomImportManyAttribute.cs « Extensibility « 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: b119e79b05e714627edaafbd24418e47e0ec64e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;

namespace System.ComponentModel.Composition.Extensibility
{
    [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
    public class CustomImportManyAttribute : ImportManyAttribute
    {
        public CustomImportManyAttribute()
        {
        }

        public CustomImportManyAttribute(Type type)
            : base(type)
        {
        }
    }
}