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

LocalQueryMethodImplementationTypeAttribute.cs « Linq « Reactive « System.Reactive.Linq « Rx.NET - github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8cb882bdb5abdf484669edb8eec64b01cf90cd4 (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
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

using System;
using System.ComponentModel;

namespace System.Reactive.Linq
{
    /// <summary>
    /// Attribute applied to static classes providing expression tree forms of query methods,
    /// mapping those to the corresponding methods for local query execution on the specified
    /// target class type.
    /// </summary>
    [EditorBrowsable(EditorBrowsableState.Never)]
    [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
    public sealed class LocalQueryMethodImplementationTypeAttribute : Attribute
    {
        private readonly Type _targetType;

        /// <summary>
        /// Creates a new mapping to the specified local execution query method implementation type.
        /// </summary>
        /// <param name="targetType">Type with query methods for local execution.</param>
        public LocalQueryMethodImplementationTypeAttribute(Type targetType)
        {
            _targetType = targetType;
        }

        /// <summary>
        /// Gets the type with the implementation of local query methods.
        /// </summary>
        public Type TargetType
        {
            get { return _targetType; }
        }
    }
}