File: System\Windows\Media\HitTestParameters.cs | Web Access |
Project: src\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. // namespace System.Windows.Media { /// <summary> /// This is the base class for packing together parameters for a hit test pass. /// </summary> public abstract class HitTestParameters { // Prevent 3rd parties from extending this abstract base class. internal HitTestParameters() {} } } |