Ver Fonte

* Identity.cs: Added TargetUri property

svn path=/trunk/mcs/; revision=16306
Lluis Sanchez há 22 anos atrás
pai
commit
0bd2c8daea

+ 4 - 0
mcs/class/corlib/System.Runtime.Remoting/ChangeLog

@@ -1,3 +1,7 @@
+2003-07-16  Lluis Sanchez Gual <[email protected]>
+
+	* Identity.cs: Added TargetUri property
+
 2003-04-10  Lluis Sanchez Gual <[email protected]>
 
 	* ObjRef.cs: Fixed bug #43187, based on the patch by Jean-Marc Andre

+ 5 - 0
mcs/class/corlib/System.Runtime.Remoting/Identity.cs

@@ -139,5 +139,10 @@ namespace System.Runtime.Remoting
 		{
 			return _objRef;
 		}
+
+		public string TargetUri
+		{
+			get { return _objRef.URI; }
+		}
 	}
 }