|
@@ -0,0 +1,32 @@
|
|
|
+// Licensed to the .NET Foundation under one or more agreements.
|
|
|
+// The .NET Foundation licenses this file to you under the Apache 2.0 License.
|
|
|
+// See the LICENSE file in the project root for more information.
|
|
|
+
|
|
|
+using System.ComponentModel;
|
|
|
+
|
|
|
+namespace System.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
|
|
|
+ {
|
|
|
+ /// <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; }
|
|
|
+ }
|
|
|
+}
|