Files
2026-06-04 11:42:34 +02:00

18 lines
745 B
C#

using System;
namespace System
{
/// <summary>Defines a mechanism for retrieving a service object; that is, an object that provides custom support to other objects.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000677 RID: 1655
public interface IServiceProvider
{
/// <summary>Gets the service object of the specified type.</summary>
/// <returns>A service object of type <paramref name="serviceType" />.-or- null if there is no service object of type <paramref name="serviceType" />.</returns>
/// <param name="serviceType">An object that specifies the type of service object to get. </param>
/// <filterpriority>2</filterpriority>
// Token: 0x06003EDD RID: 16093
object GetService(Type serviceType);
}
}