28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml
|
|
{
|
|
/// <summary>Provides read-only access to a set of prefix and namespace mappings.</summary>
|
|
// Token: 0x02000057 RID: 87
|
|
[Token(Token = "0x2000057")]
|
|
public interface IXmlNamespaceResolver
|
|
{
|
|
/// <summary>Gets the namespace URI mapped to the specified prefix.</summary>
|
|
/// <param name="prefix">The prefix whose namespace URI you wish to find.</param>
|
|
/// <returns>The namespace URI that is mapped to the prefix; <see langword="null" /> if the prefix is not mapped to a namespace URI.</returns>
|
|
// Token: 0x060003EA RID: 1002
|
|
[Token(Token = "0x60003EA")]
|
|
[Address(Slot = "0")]
|
|
string LookupNamespace(string prefix);
|
|
|
|
/// <summary>Gets the prefix that is mapped to the specified namespace URI.</summary>
|
|
/// <param name="namespaceName">The namespace URI whose prefix you wish to find.</param>
|
|
/// <returns>The prefix that is mapped to the namespace URI; <see langword="null" /> if the namespace URI is not mapped to a prefix.</returns>
|
|
// Token: 0x060003EB RID: 1003
|
|
[Token(Token = "0x60003EB")]
|
|
[Address(Slot = "1")]
|
|
string LookupPrefix(string namespaceName);
|
|
}
|
|
}
|