@@ -25,66 +25,59 @@ public partial interface IReportRootGetOffice365ActivationsUserCountsRequest : I
2525 /// Issues the GET request.
2626 /// </summary>
2727 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
28+ /// <param name="httpCompletionOption">The <see cref="HttpCompletionOption"/> for the request.</param>
2829 /// <returns>The task to await for async call.</returns>
29- System . Threading . Tasks . Task < Report > GetAsync (
30- CancellationToken cancellationToken = default ) ;
30+ System . Threading . Tasks . Task < Stream > GetAsync (
31+ CancellationToken cancellationToken = default ,
32+ HttpCompletionOption httpCompletionOption = HttpCompletionOption . ResponseContentRead ) ;
3133
3234 /// <summary>
3335 /// Issues the GET request and returns a <see cref="GraphResponse"/> object.
3436 /// </summary>
3537 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
3638 /// <returns>The <see cref="GraphResponse"/> object of the request</returns>
37- System . Threading . Tasks . Task < GraphResponse < Report > > GetResponseAsync ( CancellationToken cancellationToken = default ) ;
39+ System . Threading . Tasks . Task < GraphResponse > GetResponseAsync ( CancellationToken cancellationToken = default ) ;
3840
3941
4042 /// <summary>
4143 /// Issues the PATCH request.
4244 /// </summary>
43- /// <param name="report ">The Report object set with the properties to update.</param>
45+ /// <param name="stream ">The Stream object set with the properties to update.</param>
4446 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
47+ /// <param name="httpCompletionOption">The <see cref="HttpCompletionOption"/> for the request.</param>
4548 /// <returns>The task to await for async call.</returns>
46- System . Threading . Tasks . Task < Report > PatchAsync ( Report report ,
47- CancellationToken cancellationToken = default ) ;
49+ System . Threading . Tasks . Task < Stream > PatchAsync ( Stream stream ,
50+ CancellationToken cancellationToken = default ,
51+ HttpCompletionOption httpCompletionOption = HttpCompletionOption . ResponseContentRead ) ;
4852
4953 /// <summary>
5054 /// Issues the PATCH request and returns a <see cref="GraphResponse"/> object.
5155 /// </summary>
5256 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
53- /// <param name="report ">The Report object set with the properties to update.</param>
57+ /// <param name="stream ">The Stream object set with the properties to update.</param>
5458 /// <returns>The <see cref="GraphResponse"/> object of the request</returns>
55- System . Threading . Tasks . Task < GraphResponse < Report > > PatchResponseAsync ( Report report , CancellationToken cancellationToken = default ) ;
59+ System . Threading . Tasks . Task < GraphResponse > PatchResponseAsync ( Stream stream , CancellationToken cancellationToken = default ) ;
5660
5761
5862 /// <summary>
5963 /// Issues the PUT request.
6064 /// </summary>
61- /// <param name="report ">The Report object to update.</param>
65+ /// <param name="stream ">The Stream object to update.</param>
6266 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
67+ /// <param name="httpCompletionOption">The <see cref="HttpCompletionOption"/> for the request.</param>
6368 /// <returns>The task to await for async call.</returns>
64- System . Threading . Tasks . Task < Report > PutAsync ( Report report ,
65- CancellationToken cancellationToken = default ) ;
69+ System . Threading . Tasks . Task < Stream > PutAsync ( Stream stream ,
70+ CancellationToken cancellationToken = default ,
71+ HttpCompletionOption httpCompletionOption = HttpCompletionOption . ResponseContentRead ) ;
6672
6773 /// <summary>
6874 /// Issues the PUT request and returns a <see cref="GraphResponse"/> object.
6975 /// </summary>
7076 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
71- /// <param name="report ">The Report object set with the properties to update.</param>
77+ /// <param name="stream ">The Stream object set with the properties to update.</param>
7278 /// <returns>The <see cref="GraphResponse"/> object of the request</returns>
73- System . Threading . Tasks . Task < GraphResponse < Report > > PutResponseAsync ( Report report , CancellationToken cancellationToken = default ) ;
79+ System . Threading . Tasks . Task < GraphResponse > PutResponseAsync ( Stream stream , CancellationToken cancellationToken = default ) ;
7480
7581
76- /// <summary>
77- /// Adds the specified expand value to the request.
78- /// </summary>
79- /// <param name="value">The expand value.</param>
80- /// <returns>The request object to send.</returns>
81- IReportRootGetOffice365ActivationsUserCountsRequest Expand ( string value ) ;
82-
83- /// <summary>
84- /// Adds the specified select value to the request.
85- /// </summary>
86- /// <param name="value">The select value.</param>
87- /// <returns>The request object to send.</returns>
88- IReportRootGetOffice365ActivationsUserCountsRequest Select ( string value ) ;
8982 }
9083}
0 commit comments