[runtime] Fix corlib out of date error with disabled COM
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / FreeFormEditing / IAutoConnectContainer.cs
1 //----------------------------------------------------------------
2 // <copyright company="Microsoft Corporation">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //----------------------------------------------------------------
6
7 namespace System.Activities.Presentation.FreeFormEditing
8 {
9     using System.Windows;
10
11     /// <summary>
12     /// Defines the interface for the container that enables auto-connect
13     /// </summary>
14     internal interface IAutoConnectContainer
15     {
16         void DoAutoConnect(DragEventArgs e, UIElement targetElement, AutoConnectDirections direction);
17
18         AutoConnectDirections GetDirectionsAllowed(DragEventArgs e, UIElement targetElement);
19     }
20 }