@@ -25,7 +25,11 @@ Task<GetAllViewsResponse> GetAllViewsAsync(
2525 /// POST /_api/view
2626 /// </summary>
2727 /// <param name="body">The body of the request containing required properties.</param>
28- /// <param name="ignoreNullValuesOnSerialization">Indicates whether to ignore null values during serialization.</param>
28+ /// <param name="ignoreNullValuesOnSerialization">
29+ /// Indicates whether to ignore null values during serialization.
30+ /// This parameter can be used together with <see cref="LinkProperties.IncludeAllFields"/>
31+ /// set to false to control if fields with null values are included.
32+ /// </param>
2933 /// <param name="token">A CancellationToken to observe while waiting for the task to complete or to cancel the task.</param>
3034 /// <returns></returns>
3135 Task < ViewResponse > PostCreateViewAsync ( ViewDetails body , bool ignoreNullValuesOnSerialization = true , CancellationToken token = default ) ;
@@ -66,7 +70,11 @@ Task<GetViewPropertiesResponse> GetViewPropertiesAsync(string viewNameOrId,
6670 /// </summary>
6771 /// <param name="viewNameOrId">The name or identifier of the view.</param>
6872 /// <param name="body">The body of the request containing required properties.</param>
69- /// <param name="ignoreNullValuesOnSerialization">Indicates whether to ignore null values during serialization.</param>
73+ /// <param name="ignoreNullValuesOnSerialization">
74+ /// Indicates whether to ignore null values during serialization.
75+ /// This parameter can be used together with <see cref="LinkProperties.IncludeAllFields"/>
76+ /// set to false to control if fields with null values are included.
77+ /// </param>
7078 /// <param name="token">A CancellationToken to observe while waiting for the task to complete or to cancel the task.</param>
7179 /// <returns></returns>
7280 Task < ViewResponse > PatchViewPropertiesAsync ( string viewNameOrId , ViewDetails body , bool ignoreNullValuesOnSerialization = true ,
@@ -78,7 +86,11 @@ Task<ViewResponse> PatchViewPropertiesAsync(string viewNameOrId, ViewDetails bod
7886 /// </summary>
7987 /// <param name="viewName">The name of the view.</param>
8088 /// <param name="body">The body of the request containing required properties.</param>
81- /// <param name="ignoreNullValuesOnSerialization">Indicates whether to ignore null values during serialization.</param>
89+ /// <param name="ignoreNullValuesOnSerialization">
90+ /// Indicates whether to ignore null values during serialization.
91+ /// This parameter can be used together with <see cref="LinkProperties.IncludeAllFields"/>
92+ /// set to false to control if fields with null values are included.
93+ /// </param>
8294 /// <param name="token">A CancellationToken to observe while waiting for the task to complete or to cancel the task.</param>
8395 /// <returns></returns>
8496 Task < ViewResponse > PutViewPropertiesAsync ( string viewName , ViewDetails body , bool ignoreNullValuesOnSerialization = true ,
0 commit comments