| File: System\Xaml\Events\XamlObjectEventArgs.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\System.Xaml\System.Xaml.csproj (System.Xaml) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #nullable disable namespace System.Xaml { public class XamlObjectEventArgs : EventArgs { public XamlObjectEventArgs(object instance) { Instance = instance ?? throw new ArgumentNullException(nameof(instance)); } internal XamlObjectEventArgs(object instance, Uri sourceBamlUri, int elementLineNumber, int elementLinePosition) : this(instance) { SourceBamlUri = sourceBamlUri; ElementLineNumber = elementLineNumber; ElementLinePosition = elementLinePosition; } public object Instance { get; private set; } public Uri SourceBamlUri { get; private set; } public int ElementLineNumber { get; private set; } public int ElementLinePosition { get; private set; } } }