OpenApiWriterExtensions.WriteRequiredMap Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WriteRequiredMap(IOpenApiWriter, String, IDictionary<String,String>, Action<IOpenApiWriter,String>) |
Write the required Open API element map (string to string mapping). |
WriteRequiredMap<T>(IOpenApiWriter, String, IDictionary<String,T>, Action<IOpenApiWriter,T>) |
Write the required Open API element map. |
WriteRequiredMap(IOpenApiWriter, String, IDictionary<String,String>, Action<IOpenApiWriter,String>)
Write the required Open API element map (string to string mapping).
public static void WriteRequiredMap (this Microsoft.OpenApi.Writers.IOpenApiWriter writer, string name, System.Collections.Generic.IDictionary<string,string> elements, Action<Microsoft.OpenApi.Writers.IOpenApiWriter,string> action);
static member WriteRequiredMap : Microsoft.OpenApi.Writers.IOpenApiWriter * string * System.Collections.Generic.IDictionary<string, string> * Action<Microsoft.OpenApi.Writers.IOpenApiWriter, string> -> unit
<Extension()>
Public Sub WriteRequiredMap (writer As IOpenApiWriter, name As String, elements As IDictionary(Of String, String), action As Action(Of IOpenApiWriter, String))
Parameters
- writer
- IOpenApiWriter
The Open API writer.
- name
- String
The property name.
- elements
- IDictionary<String,String>
The map values.
- action
- Action<IOpenApiWriter,String>
The map element writer action.
Applies to
WriteRequiredMap<T>(IOpenApiWriter, String, IDictionary<String,T>, Action<IOpenApiWriter,T>)
Write the required Open API element map.
public static void WriteRequiredMap<T> (this Microsoft.OpenApi.Writers.IOpenApiWriter writer, string name, System.Collections.Generic.IDictionary<string,T> elements, Action<Microsoft.OpenApi.Writers.IOpenApiWriter,T> action) where T : Microsoft.OpenApi.Interfaces.IOpenApiElement;
static member WriteRequiredMap : Microsoft.OpenApi.Writers.IOpenApiWriter * string * System.Collections.Generic.IDictionary<string, 'T (requires 'T :> Microsoft.OpenApi.Interfaces.IOpenApiElement)> * Action<Microsoft.OpenApi.Writers.IOpenApiWriter, 'T (requires 'T :> Microsoft.OpenApi.Interfaces.IOpenApiElement)> -> unit (requires 'T :> Microsoft.OpenApi.Interfaces.IOpenApiElement)
<Extension()>
Public Sub WriteRequiredMap(Of T As IOpenApiElement) (writer As IOpenApiWriter, name As String, elements As IDictionary(Of String, T), action As Action(Of IOpenApiWriter, T))
Type Parameters
- T
The Open API element type. IOpenApiElement
Parameters
- writer
- IOpenApiWriter
The Open API writer.
- name
- String
The property name.
- elements
- IDictionary<String,T>
The map values.
- action
- Action<IOpenApiWriter,T>
The map element writer action.