Aberus.StackOverflowQuickLaunch.StackOverflowSearchItemResult.StackOverflowSearchItemResult C# (CSharp) Method

StackOverflowSearchItemResult() public method

public StackOverflowSearchItemResult ( string name, string description, string url, IVsUIObject icon, IVsSearchProvider provider ) : System.Diagnostics
name string
description string
url string
icon IVsUIObject
provider IVsSearchProvider
return System.Diagnostics
        public StackOverflowSearchItemResult(string name, string description, string url, IVsUIObject icon, IVsSearchProvider provider)
        {
            DisplayText = name;
            Url = url;
            Icon = icon;
            PersistenceData = name + "|" + Url;
            Description = description;
            SearchProvider = provider;
        }