m
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml
|
||||
{
|
||||
/// <summary>Provides read-only access to a set of prefix and namespace mappings.</summary>
|
||||
// Token: 0x020000CE RID: 206
|
||||
[Token(Token = "0x20000CE")]
|
||||
public interface IXmlNamespaceResolver
|
||||
{
|
||||
/// <summary>Gets a collection of defined prefix-namespace mappings that are currently in scope.</summary>
|
||||
/// <param name="scope">An <see cref="T:System.Xml.XmlNamespaceScope" /> value that specifies the type of namespace nodes to return.</param>
|
||||
/// <returns>An <see cref="T:System.Collections.IDictionary" /> that contains the current in-scope namespaces.</returns>
|
||||
// Token: 0x06000A80 RID: 2688
|
||||
[Token(Token = "0x6000A80")]
|
||||
[Address(Slot = "0")]
|
||||
IDictionary<string, string> GetNamespacesInScope(XmlNamespaceScope scope);
|
||||
|
||||
/// <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: 0x06000A81 RID: 2689
|
||||
[Token(Token = "0x6000A81")]
|
||||
[Address(Slot = "1")]
|
||||
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: 0x06000A82 RID: 2690
|
||||
[Token(Token = "0x6000A82")]
|
||||
[Address(Slot = "2")]
|
||||
string LookupPrefix(string namespaceName);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user