ci: Update plugins
This commit is contained in:
@@ -30,17 +30,17 @@
|
||||
<param name="amount">The amount of phase to increment.</param>
|
||||
<returns>The next delay value.</returns>
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.EmptyLocationConverter">
|
||||
<member name="T:Cryville.EEW.EmptyLocationNamer">
|
||||
<summary>
|
||||
An empty <see cref="T:Cryville.EEW.ILocationConverter" />.
|
||||
An empty <see cref="T:Cryville.EEW.ILocationNamer" />.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.EmptyLocationConverter.Instance">
|
||||
<member name="P:Cryville.EEW.EmptyLocationNamer.Instance">
|
||||
<summary>
|
||||
The shared instance of the <see cref="T:Cryville.EEW.EmptyLocationConverter" /> class.
|
||||
The shared instance of the <see cref="T:Cryville.EEW.EmptyLocationNamer" /> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Cryville.EEW.EmptyLocationConverter.Convert(Cryville.EEW.INamedLocation,System.Globalization.CultureInfo@)">
|
||||
<member name="M:Cryville.EEW.EmptyLocationNamer.Name(System.Double,System.Double,System.Globalization.CultureInfo@,System.Int32@)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.GeoUtils">
|
||||
@@ -213,18 +213,20 @@
|
||||
<param name="culture">The preferred culture of the generated object. When the method returns, set to the actual culture of the generated object.</param>
|
||||
<returns>The generated object.</returns>
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.ILocationConverter">
|
||||
<member name="T:Cryville.EEW.ILocationNamer">
|
||||
<summary>
|
||||
Represents a converter that converts a named location to a name in a specified culture.
|
||||
Represents a namer that names a location in a specified culture.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Cryville.EEW.ILocationConverter.Convert(Cryville.EEW.INamedLocation,System.Globalization.CultureInfo@)">
|
||||
<member name="M:Cryville.EEW.ILocationNamer.Name(System.Double,System.Double,System.Globalization.CultureInfo@,System.Int32@)">
|
||||
<summary>
|
||||
Converts a named location to a name in a specified culture.
|
||||
Names a location in a specified culture.
|
||||
</summary>
|
||||
<param name="location">The named location.</param>
|
||||
<param name="lat">The latitude.</param>
|
||||
<param name="lon">The longitude.</param>
|
||||
<param name="culture">The preferred culture of the name. When the method returns, set to the actual culture of the name.</param>
|
||||
<returns>The converted name.</returns>
|
||||
<param name="specificity">The preferred specificity of the name. When the method returns, set to the actual specificity of the name.</param>
|
||||
<returns>The name.</returns>
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.ISourceWorker">
|
||||
<summary>
|
||||
@@ -349,6 +351,16 @@
|
||||
<returns>The string of the specified name in the resource.</returns>
|
||||
<exception cref="T:System.Collections.Generic.KeyNotFoundException">The string of the specified name is not found.</exception>
|
||||
</member>
|
||||
<member name="M:Cryville.EEW.MessageStringSetExtensions.GetStringOrDefault(Cryville.EEW.IMessageStringSet,System.String,System.String)">
|
||||
<summary>
|
||||
Gets a string in the string set, or a default string in the string set if not found.
|
||||
</summary>
|
||||
<param name="set">The string set.</param>
|
||||
<param name="name">The name of the string.</param>
|
||||
<param name="defaultName">The name of the default string.</param>
|
||||
<returns>The string of the specified name in the resource, or the default string of the specified default name in the string set if not found.</returns>
|
||||
<exception cref="T:System.Collections.Generic.KeyNotFoundException">The default string of the specified default name is not found.</exception>
|
||||
</member>
|
||||
<member name="M:Cryville.EEW.MessageStringSetExtensions.GetStringSetRequired(Cryville.EEW.IMessageStringSet,System.String)">
|
||||
<summary>
|
||||
Gets a string set in the string set.
|
||||
@@ -960,61 +972,6 @@
|
||||
</summary>
|
||||
<param name="value">An instance of the <see cref="T:Cryville.EEW.Models.XmlSerializedDateTimeOffset" /> struct.</param>
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.INamedLocation">
|
||||
<summary>
|
||||
Represents a named location.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.INamedLocation.Name">
|
||||
<summary>
|
||||
The source name of the location.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.INamedLocation.Culture">
|
||||
<summary>
|
||||
The source culture of <see cref="P:Cryville.EEW.INamedLocation.Name" />.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.INamedLocation.Latitude">
|
||||
<summary>
|
||||
The latitude of the location.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.INamedLocation.Longitude">
|
||||
<summary>
|
||||
The longitude of the location.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.NamedLocation">
|
||||
<summary>
|
||||
Represents a named location.
|
||||
</summary>
|
||||
<param name="Name">The source name of the location.</param>
|
||||
<param name="Culture">The source culture of <paramref name="Name" />.</param>
|
||||
<param name="Latitude">The latitude of the location.</param>
|
||||
<param name="Longitude">The longitude of the location.</param>
|
||||
</member>
|
||||
<member name="M:Cryville.EEW.NamedLocation.#ctor(System.String,System.Globalization.CultureInfo,System.Double,System.Double)">
|
||||
<summary>
|
||||
Represents a named location.
|
||||
</summary>
|
||||
<param name="Name">The source name of the location.</param>
|
||||
<param name="Culture">The source culture of <paramref name="Name" />.</param>
|
||||
<param name="Latitude">The latitude of the location.</param>
|
||||
<param name="Longitude">The longitude of the location.</param>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.NamedLocation.Name">
|
||||
<summary>The source name of the location.</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.NamedLocation.Culture">
|
||||
<summary>The source culture of <paramref name="Name" />.</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.NamedLocation.Latitude">
|
||||
<summary>The latitude of the location.</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.NamedLocation.Longitude">
|
||||
<summary>The longitude of the location.</summary>
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.NonstandardDateTimeJsonConverter">
|
||||
<summary>
|
||||
Converts instances of the <see cref="T:System.DateTime" /> struct to or from JSON.
|
||||
@@ -1039,7 +996,7 @@
|
||||
<member name="P:Cryville.EEW.Report.EmptyRVMGeneratorContext.SeverityScheme">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.Report.EmptyRVMGeneratorContext.LocationConverter">
|
||||
<member name="M:Cryville.EEW.Report.EmptyRVMGeneratorContext.NameLocation(System.Double,System.Double,System.Globalization.CultureInfo,System.Globalization.CultureInfo@,System.String@,System.Int32@)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.Report.EmptySeverityScheme">
|
||||
@@ -1192,10 +1149,34 @@
|
||||
The severity scheme.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Cryville.EEW.Report.IRVMGeneratorContext.LocationConverter">
|
||||
<member name="M:Cryville.EEW.Report.IRVMGeneratorContext.NameLocation(System.Double,System.Double,System.Globalization.CultureInfo,System.Globalization.CultureInfo@,System.String@,System.Int32@)">
|
||||
<summary>
|
||||
The location converter.
|
||||
Names a location in a culture.
|
||||
</summary>
|
||||
<param name="lat">The latitude of the location.</param>
|
||||
<param name="lon">The longitude of the location.</param>
|
||||
<param name="localCulture">The local culture supported by the event itself.</param>
|
||||
<param name="targetCulture">The target culture of the location name. When the method returns, set to the actual culture of the location name.</param>
|
||||
<param name="name">The location name.</param>
|
||||
<param name="specificity">The location specificity. See <see cref="P:Cryville.EEW.Report.ReportViewModel.LocationSpecificity" />.</param>
|
||||
<returns>Whether the name is given by the context. <see langword="false" /> if the generator should provide a local name instead.</returns>
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.Report.RVMGeneratorContextExtensions">
|
||||
<summary>
|
||||
Provides a set of <see langword="static" /> methods related to <see cref="T:Cryville.EEW.Report.IRVMGeneratorContext" />.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Cryville.EEW.Report.RVMGeneratorContextExtensions.NameLocationTo(Cryville.EEW.Report.IRVMGeneratorContext,Cryville.EEW.Report.ReportViewModel,System.Double,System.Double,System.Globalization.CultureInfo,System.Globalization.CultureInfo)">
|
||||
<summary>
|
||||
Names a location in a culture and sets the result to a report view model.
|
||||
</summary>
|
||||
<param name="context">The context.</param>
|
||||
<param name="e">The report view model.</param>
|
||||
<param name="lat">The latitude of the location.</param>
|
||||
<param name="lon">The longitude of the location.</param>
|
||||
<param name="localCulture">The local culture supported by the event itself.</param>
|
||||
<param name="targetCulture">The target culture of the location name. When the method returns, set to the actual culture of the location name.</param>
|
||||
<returns>Whether the name is given by the context. <see langword="false" /> if the generator should provide a local name instead.</returns>
|
||||
</member>
|
||||
<member name="T:Cryville.EEW.Report.ISeverityScheme">
|
||||
<summary>
|
||||
|
Reference in New Issue
Block a user