MonoDevelop.Projects.ProjectServiceExtension.GetService C# (CSharp) Méthode

GetService() public méthode

public GetService ( SolutionItem item, Type type ) : object
item SolutionItem
type System.Type
Résultat object
		public virtual object GetService (SolutionItem item, Type type)
		{
			if (type.IsInstanceOfType (this))
				return this;
			else
				return GetNext (item).GetService (item, type);
		}

Same methods

ProjectServiceExtension::GetService ( WorkspaceItem item, Type type ) : object