This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,14 @@
using System;
using System.Runtime.InteropServices;
namespace System.ComponentModel.Design
{
/// <summary>Provides a callback mechanism that can create an instance of a service on demand.</summary>
/// <returns>The service specified by <paramref name="serviceType" />, or null if the service could not be created. </returns>
/// <param name="container">The service container that requested the creation of the service. </param>
/// <param name="serviceType">The type of service to create. </param>
// Token: 0x02000320 RID: 800
// (Invoke) Token: 0x06001C59 RID: 7257
[ComVisible(true)]
public delegate object ServiceCreatorCallback(IServiceContainer container, Type serviceType);
}