CCNet.SourceNotifier.Templates.ResourcesManager.CustomXmlUrlResolver.GetEntity C# (CSharp) Method

GetEntity() public method

Maps a URI to an object containing the actual resource.
public GetEntity ( Uri absoluteUri, string role, Type ofObjectToReturn ) : object
absoluteUri System.Uri
role string
ofObjectToReturn System.Type
return object
			public override object GetEntity(Uri absoluteUri, string role, Type ofObjectToReturn)
			{
				return GetResource(Path.GetFileName(absoluteUri.AbsolutePath));
			}
		}
ResourcesManager.CustomXmlUrlResolver