You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="concreteType">The substitution type if <typeparamref name="TObject"/> is abstract type. <c>null</c> when <typeparamref name="TObject"/> is not abstract type.</param>
36
37
/// <param name="schema">The schema which contains schema for collection items, dictionary keys, or tuple items. This value may be <c>null</c>.</param>
/// The <see cref="ISerializerCodeGenerationContext"/> which holds configuration and stores generated code constructs.
36
36
/// </param>
37
+
/// <param name="concreteType">The substitution type if builder's target type is abstract type. <c>null</c> when builder's target type is not abstract type.</param>
37
38
/// <param name="itemSchema">The schema which contains schema for collection items, dictionary keys, or tuple items. This value must not be <c>null</c>.</param>
/// <param name="concreteType">The substitution type if <typeparamref name="TObject"/> is abstract type. <c>null</c> when <typeparamref name="TObject"/> is not abstract type.</param>
55
54
/// <param name="schema">The schema which contains schema for collection items, dictionary keys, or tuple items. This value may be <c>null</c>.</param>
@@ -105,12 +98,13 @@ public MessagePackSerializer<TObject> BuildSerializerInstance( SerializationCont
105
98
/// Builds the serializer and returns its new instance.
106
99
/// </summary>
107
100
/// <param name="context">The context information. This value will not be <c>null</c>.</param>
101
+
/// <param name="concreteType">The substitution type if <typeparamref name="TObject"/> is abstract type. <c>null</c> when <typeparamref name="TObject"/> is not abstract type.</param>
108
102
/// <param name="schema">The schema which contains schema for collection items, dictionary keys, or tuple items. This value may be <c>null</c>.</param>
/// The <see cref="ISerializerCodeGenerationContext"/> which holds configuration and stores generated code constructs.
188
182
/// </param>
183
+
/// <param name="concreteType">The substitution type if <typeparamref name="TObject"/> is abstract type. <c>null</c> when <typeparamref name="TObject"/> is not abstract type.</param>
189
184
/// <param name="itemSchema">The schema which contains schema for collection items, dictionary keys, or tuple items. This value must not be <c>null</c>.</param>
/// This method will not do anything when <see cref="ISerializerCodeGenerationContext.BuiltInSerializerExists"/> returns <c>true</c> for <typeparamref name="TObject"/>.
@@ -219,11 +214,12 @@ public void BuildSerializerCode( ISerializerCodeGenerationContext context, Polym
219
214
/// The <see cref="ISerializerCodeGenerationContext"/> which holds configuration and stores generated code constructs.
220
215
/// This value will not be <c>null</c>.
221
216
/// </param>
217
+
/// <param name="concreteType">The substitution type if <typeparamref name="TObject"/> is abstract type. <c>null</c> when <typeparamref name="TObject"/> is not abstract type.</param>
222
218
/// <param name="itemSchema">The schema which contains schema for collection items, dictionary keys, or tuple items. This value must not be <c>null</c>.</param>
0 commit comments