Nemerle.VisualStudio.Project.NemerleProjectNode.GetGuidProperty C# (CSharp) Method

GetGuidProperty() public method

public GetGuidProperty ( int propid, System.Guid &guid ) : int
propid int
guid System.Guid
return int
        public override int GetGuidProperty(int propid, out Guid guid)
        {
            if ((__VSHPROPID)propid == __VSHPROPID.VSHPROPID_PreferredLanguageSID)
            {
                guid = typeof(NemerleLanguageService).GUID;
            }
            else
            {
                return base.GetGuidProperty(propid, out guid);
            }
            return VSConstants.S_OK;
        }