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