* AppDomainSetup.cs: If relative paths are used they should be
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Lifetime / ISponsor.cs
1 //
2 // System.Runtime.Remoting.Lifetime.ISponsor.cs
3 //
4 // Author: Duncan Mak  (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright. Ximian, Inc.
7 //
8
9 using System;
10 using System.Runtime.Remoting.Lifetime;
11
12 namespace System.Runtime.Remoting.Lifetime {
13
14         public interface ISponsor
15         {
16                 TimeSpan Renewal (ILease lease);
17         }
18 }