Welcome to mirror list, hosted at ThFree Co, Russian Federation.

XmlResolver.cs « System.Xml « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 665dff630e65532bc0bc219ac88672409736ba5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
//
// System.Xml.XmlResolver.cs
//
// Author:
//   Jason Diamond (jason@injektilo.org)
//
// (C) 2001 Jason Diamond  http://injektilo.org/
//

using System;
using System.Net;

namespace System.Xml
{
	public abstract class XmlResolver
	{
		public abstract ICredentials Credentials
		{
			set;
		}

		public abstract object GetEntity(
			Uri absoluteUri,
			string role,
			Type type);

		public abstract Uri ResolveUri(
			Uri baseUri,
			string relativeUri);
	}
}