Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

29 lines
1.3 KiB
C#

using System;
using System.Reflection;
using Cpp2IlInjected;
namespace System.Configuration.Provider
{
/// <summary>Represents a collection of provider objects that inherit from <see cref="T:System.Configuration.Provider.ProviderBase" />.</summary>
// Token: 0x0200000C RID: 12
[Token(Token = "0x200000C")]
[DefaultMember("Item")]
public class ProviderCollection
{
/// <summary>Adds a provider to the collection.</summary>
/// <param name="provider">The provider to be added.</param>
/// <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="provider" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">The <see cref="P:System.Configuration.Provider.ProviderBase.Name" /> of <paramref name="provider" /> is <see langword="null" />.
/// -or-
/// The length of the <see cref="P:System.Configuration.Provider.ProviderBase.Name" /> of <paramref name="provider" /> is less than 1.</exception>
// Token: 0x06000019 RID: 25 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000019")]
[Address(RVA = "0x74E3E0", Offset = "0x74D1E0", VA = "0x18074E3E0", Slot = "4")]
public virtual void Add(ProviderBase provider)
{
}
}
}