Update generated source code
This commit is contained in:
parent
8d0da78681
commit
5c525915cd
|
|
@ -13,6 +13,7 @@ namespace Microsoft.AspNetCore.Mvc.Localization
|
|||
public virtual Microsoft.Extensions.Localization.LocalizedString GetString(string name, params object[] arguments) { throw null; }
|
||||
protected virtual Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString ToHtmlString(Microsoft.Extensions.Localization.LocalizedString result) { throw null; }
|
||||
protected virtual Microsoft.AspNetCore.Mvc.Localization.LocalizedHtmlString ToHtmlString(Microsoft.Extensions.Localization.LocalizedString result, object[] arguments) { throw null; }
|
||||
[System.ObsoleteAttribute("This method is obsolete. Use `CurrentCulture` and `CurrentUICulture` instead.")]
|
||||
public virtual Microsoft.AspNetCore.Mvc.Localization.IHtmlLocalizer WithCulture(System.Globalization.CultureInfo culture) { throw null; }
|
||||
}
|
||||
public static partial class HtmlLocalizerExtensions
|
||||
|
|
@ -35,6 +36,7 @@ namespace Microsoft.AspNetCore.Mvc.Localization
|
|||
public virtual System.Collections.Generic.IEnumerable<Microsoft.Extensions.Localization.LocalizedString> GetAllStrings(bool includeParentCultures) { throw null; }
|
||||
public virtual Microsoft.Extensions.Localization.LocalizedString GetString(string name) { throw null; }
|
||||
public virtual Microsoft.Extensions.Localization.LocalizedString GetString(string name, params object[] arguments) { throw null; }
|
||||
[System.ObsoleteAttribute("This method is obsolete. Use `CurrentCulture` and `CurrentUICulture` instead.")]
|
||||
public virtual Microsoft.AspNetCore.Mvc.Localization.IHtmlLocalizer WithCulture(System.Globalization.CultureInfo culture) { throw null; }
|
||||
}
|
||||
public partial interface IHtmlLocalizer
|
||||
|
|
@ -44,6 +46,7 @@ namespace Microsoft.AspNetCore.Mvc.Localization
|
|||
System.Collections.Generic.IEnumerable<Microsoft.Extensions.Localization.LocalizedString> GetAllStrings(bool includeParentCultures);
|
||||
Microsoft.Extensions.Localization.LocalizedString GetString(string name);
|
||||
Microsoft.Extensions.Localization.LocalizedString GetString(string name, params object[] arguments);
|
||||
[System.ObsoleteAttribute("This method is obsolete. Use `CurrentCulture` and `CurrentUICulture` instead.")]
|
||||
Microsoft.AspNetCore.Mvc.Localization.IHtmlLocalizer WithCulture(System.Globalization.CultureInfo culture);
|
||||
}
|
||||
public partial interface IHtmlLocalizerFactory
|
||||
|
|
@ -76,6 +79,7 @@ namespace Microsoft.AspNetCore.Mvc.Localization
|
|||
public System.Collections.Generic.IEnumerable<Microsoft.Extensions.Localization.LocalizedString> GetAllStrings(bool includeParentCultures) { throw null; }
|
||||
public Microsoft.Extensions.Localization.LocalizedString GetString(string name) { throw null; }
|
||||
public Microsoft.Extensions.Localization.LocalizedString GetString(string name, params object[] values) { throw null; }
|
||||
[System.ObsoleteAttribute("This method is obsolete. Use `CurrentCulture` and `CurrentUICulture` instead.")]
|
||||
public Microsoft.AspNetCore.Mvc.Localization.IHtmlLocalizer WithCulture(System.Globalization.CultureInfo culture) { throw null; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue