| File: System\Windows\Markup\Baml2006\Baml6ConstructorInfo.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Baml2006 { internal struct Baml6ConstructorInfo { public Baml6ConstructorInfo(List<Type> types, Func<Object[], object> ctor) { _types = types; _constructor = ctor; } private List<Type> _types; private Func<Object[], object> _constructor; public List<Type> Types { get { return _types; } } public Func<Object[], object> Constructor { get { return _constructor; } } } }