Ejemplo n.º 1
0
        static string GetCref(ICSharpCode.NRefactory.TypeSystem.ITypeResolveContext ctx, string cref)
        {
            if (cref == null)
            {
                return("");
            }

            if (cref.Length < 2)
            {
                return(cref);
            }
            try {
                var entity = new ICSharpCode.NRefactory.Documentation.DocumentationComment("", ctx).ResolveCref(cref.Replace("<", "{").Replace(">", "}"));

                if (entity != null)
                {
                    var ambience = new ICSharpCode.NRefactory.CSharp.CSharpAmbience();
                    ambience.ConversionFlags = ICSharpCode.NRefactory.TypeSystem.ConversionFlags.ShowParameterList | ICSharpCode.NRefactory.TypeSystem.ConversionFlags.ShowParameterNames | ICSharpCode.NRefactory.TypeSystem.ConversionFlags.ShowTypeParameterList;
                    return(ambience.ConvertSymbol(entity));
                }
            } catch (Exception e) {
                LoggingService.LogWarning("Invalid cref:" + cref, e);
            }

            if (cref[1] == ':')
            {
                return(cref.Substring(2, cref.Length - 2));
            }

            return(cref);
        }
        static string GetCref(ITypeResolveContext ctx, string cref)
        {
            if (cref == null)
            {
                return("");
            }

            if (cref.Length < 2)
            {
                return(cref);
            }
            try {
                var entity = new DocumentationComment("", ctx).ResolveCref(cref);

                if (entity != null)
                {
                    var ambience = new ICSharpCode.NRefactory.CSharp.CSharpAmbience();
                    ambience.ConversionFlags = ConversionFlags.ShowParameterList | ConversionFlags.ShowParameterNames | ConversionFlags.ShowTypeParameterList;
                    return(ambience.ConvertEntity(entity));
                }
            } catch (Exception e) {
                LoggingService.LogWarning("Invalid cref:" + cref, e);
            }

            if (cref.Substring(1, 1) == ":")
            {
                return(cref.Substring(2, cref.Length - 2));
            }

            return(cref);
        }
Ejemplo n.º 3
0
		static string GetCref (ICSharpCode.NRefactory.TypeSystem.ITypeResolveContext ctx, string cref)
		{
			if (cref == null)
				return "";

			if (cref.Length < 2)
				return cref;
			try {
				var entity = new ICSharpCode.NRefactory.Documentation.DocumentationComment ("", ctx).ResolveCref (cref.Replace("<", "{").Replace(">", "}"));
	
				if (entity != null) {
					var ambience = new ICSharpCode.NRefactory.CSharp.CSharpAmbience ();
					ambience.ConversionFlags = ICSharpCode.NRefactory.TypeSystem.ConversionFlags.ShowParameterList | ICSharpCode.NRefactory.TypeSystem.ConversionFlags.ShowParameterNames | ICSharpCode.NRefactory.TypeSystem.ConversionFlags.ShowTypeParameterList;
					return ambience.ConvertSymbol (entity);
				}
			} catch (Exception e) {
				LoggingService.LogWarning ("Invalid cref:" + cref, e);
			}

			if (cref.Substring (1, 1) == ":")
				return cref.Substring (2, cref.Length - 2);
			
			return cref;
		}