Skip to content

Commit e7275d6

Browse files
author
Mike Norman
committed
WebKit: iOS 11 parameter drive (complete, drive complete)
1 parent c89e898 commit e7275d6

9 files changed

+65
-62
lines changed

en/MonoTouch.WebKit/IWKUrlSchemeHandler.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
<Parameter Name="urlSchemeTask" Type="MonoTouch.WebKit.IWKUrlSchemeTask" />
6060
</Parameters>
6161
<Docs>
62-
<param name="webView">To be added.</param>
63-
<param name="urlSchemeTask">To be added.</param>
62+
<param name="webView">The web view that is making the request.</param>
63+
<param name="urlSchemeTask">The task for which to load data.</param>
6464
<summary>Starts a URL scheme task that processes a URL and loads data for the specified <paramref name="webView" />.</summary>
6565
<remarks>To be added.</remarks>
6666
</Docs>
@@ -89,8 +89,8 @@
8989
<Parameter Name="urlSchemeTask" Type="MonoTouch.WebKit.IWKUrlSchemeTask" />
9090
</Parameters>
9191
<Docs>
92-
<param name="webView">To be added.</param>
93-
<param name="urlSchemeTask">To be added.</param>
92+
<param name="webView">The web view that is making the request.</param>
93+
<param name="urlSchemeTask">The task for which to stop loading data.</param>
9494
<summary>Stops a URL scheme task that processes a URL and loads data for the specified <paramref name="webView" />.</summary>
9595
<remarks>To be added.</remarks>
9696
</Docs>

en/MonoTouch.WebKit/IWKUrlSchemeTask.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<Parameter Name="error" Type="MonoTouch.Foundation.NSError" />
6868
</Parameters>
6969
<Docs>
70-
<param name="error">To be added.</param>
70+
<param name="error">The error that occurred.</param>
7171
<summary>Method that is called to indicate failure.</summary>
7272
<remarks>To be added.</remarks>
7373
</Docs>
@@ -120,7 +120,7 @@
120120
<Parameter Name="data" Type="MonoTouch.Foundation.NSData" />
121121
</Parameters>
122122
<Docs>
123-
<param name="data">To be added.</param>
123+
<param name="data">The data that was received.</param>
124124
<summary>Method that is called to indicate that the task received the data.</summary>
125125
<remarks>To be added.</remarks>
126126
</Docs>
@@ -148,7 +148,7 @@
148148
<Parameter Name="response" Type="MonoTouch.Foundation.NSUrlResponse" />
149149
</Parameters>
150150
<Docs>
151-
<param name="response">To be added.</param>
151+
<param name="response">The response that was received.</param>
152152
<summary>Method that is called to indicate that the task received a response.</summary>
153153
<remarks>To be added.</remarks>
154154
</Docs>

en/MonoTouch.WebKit/WKContentRuleListStore.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,9 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
165165
</Parameter>
166166
</Parameters>
167167
<Docs>
168-
<param name="identifier">To be added.</param>
169-
<param name="encodedContentRuleList">To be added.</param>
170-
<param name="completionHandler">To be added.</param>
168+
<param name="identifier">The identifier for the newly compiled list.</param>
169+
<param name="encodedContentRuleList">JSON source to compile.</param>
170+
<param name="completionHandler">A handler to run after compilation completes or stops with an error.</param>
171171
<summary>Compiles the provided list of rules, adds the list to the store with the specified <paramref name="identifier" />, and runs a handler that receives the content list and any error that is encountered.</summary>
172172
<remarks>To be added.</remarks>
173173
</Docs>
@@ -188,8 +188,8 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
188188
<Parameter Name="encodedContentRuleList" Type="System.String" />
189189
</Parameters>
190190
<Docs>
191-
<param name="identifier">To be added.</param>
192-
<param name="encodedContentRuleList">To be added.</param>
191+
<param name="identifier">The identifier for the newly compiled list.</param>
192+
<param name="encodedContentRuleList">JSON source to compile.</param>
193193
<summary>Compiles the provided list of rules, adds the list to the store with the specified , and runs a handler that receives the content list and any error that is encountered.</summary>
194194
<returns>
195195
<para class="improve-task-t-return-type-description">A task that represents the asynchronous CompileContentRuleList operation. The value of the TResult parameter is of type MonoTouch.WebKit.WKContentRuleList,MonoTouch.Foundation.NSError.</para>
@@ -239,7 +239,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
239239
<Parameter Name="url" Type="MonoTouch.Foundation.NSUrl" />
240240
</Parameters>
241241
<Docs>
242-
<param name="url">To be added.</param>
242+
<param name="url">The location of a directory that contains compiled rule lists from which to create the new store.</param>
243243
<summary>Creates and returns a rule list store object from the provided <paramref name="url" />.</summary>
244244
<returns>To be added.</returns>
245245
<remarks>To be added.</remarks>
@@ -271,7 +271,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
271271
</Parameter>
272272
</Parameters>
273273
<Docs>
274-
<param name="callback">To be added.</param>
274+
<param name="callback">A handler to run with the available identifiers.</param>
275275
<summary>Retrieves the list of identifiers for available content rule lists and passes them to the provided <paramref name="callback" />.</summary>
276276
<remarks>To be added.</remarks>
277277
</Docs>
@@ -326,8 +326,8 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
326326
</Parameter>
327327
</Parameters>
328328
<Docs>
329-
<param name="identifier">To be added.</param>
330-
<param name="completionHandler">To be added.</param>
329+
<param name="identifier">The identifer for the rule list to look up.</param>
330+
<param name="completionHandler">A handler to run on the retrieved list.</param>
331331
<summary>Passes the content rule list that is specified by the provided <paramref name="identifier" /> to the specified <paramref name="completionHandler" />.</summary>
332332
<remarks>To be added.</remarks>
333333
</Docs>
@@ -347,7 +347,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
347347
<Parameter Name="identifier" Type="System.String" />
348348
</Parameters>
349349
<Docs>
350-
<param name="identifier">To be added.</param>
350+
<param name="identifier">The identifer for the rule list to look up.</param>
351351
<summary>Passes the content rule list that is specified by the provided to the specified .</summary>
352352
<returns>
353353
<para class="improve-task-t-return-type-description">A task that represents the asynchronous LookUpContentRuleList operation. The value of the TResult parameter is of type MonoTouch.WebKit.WKContentRuleList,MonoTouch.Foundation.NSError.</para>
@@ -382,8 +382,8 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
382382
</Parameter>
383383
</Parameters>
384384
<Docs>
385-
<param name="identifier">To be added.</param>
386-
<param name="completionHandler">To be added.</param>
385+
<param name="identifier">The identifier for the list to remove.</param>
386+
<param name="completionHandler">An error handler to run after the operation completes.</param>
387387
<summary>Removes the content rule list that is specified by the provided <paramref name="identifier" /> and passes it to the specified <paramref name="completionHandler" />.</summary>
388388
<remarks>To be added.</remarks>
389389
</Docs>
@@ -403,7 +403,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
403403
<Parameter Name="identifier" Type="System.String" />
404404
</Parameters>
405405
<Docs>
406-
<param name="identifier">To be added.</param>
406+
<param name="identifier">The identifier for the list to remove.</param>
407407
<summary>Removes the content rule list that is specified by the provided and passes it to the specified .</summary>
408408
<returns>A task that represents the asynchronous RemoveContentRuleList operation</returns>
409409
<remarks />

en/MonoTouch.WebKit/WKHttpCookieStore.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
118118
<Parameter Name="observer" Type="MonoTouch.WebKit.IWKHttpCookieStoreObserver" />
119119
</Parameters>
120120
<Docs>
121-
<param name="observer">To be added.</param>
121+
<param name="observer">The observer to add.</param>
122122
<summary>Adds the specified <paramref name="observer" /> to the cookie store.</summary>
123123
<remarks>To be added.</remarks>
124124
</Docs>
@@ -167,9 +167,9 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
167167
</Parameter>
168168
</Parameters>
169169
<Docs>
170-
<param name="cookie">To be added.</param>
170+
<param name="cookie">The cookie to remove.</param>
171171
<param name="completionHandler">
172-
<para>To be added.</para>
172+
<para>An action to run after the operation completes.</para>
173173
<para tool="nullallowed">This parameter can be <see langword="null" />.</para>
174174
</param>
175175
<summary>Deletes the specified <paramref name="cookie" /> from the store and runs a completion handler when the operation is complete.</summary>
@@ -191,7 +191,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
191191
<Parameter Name="cookie" Type="MonoTouch.Foundation.NSHttpCookie" />
192192
</Parameters>
193193
<Docs>
194-
<param name="cookie">To be added.</param>
194+
<param name="cookie">The cookie to remove.</param>
195195
<summary>Deletes the specified from the store and runs a completion handler when the operation is complete.</summary>
196196
<returns>A task that represents the asynchronous DeleteCookie operation</returns>
197197
<remarks>
@@ -226,7 +226,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
226226
</Parameter>
227227
</Parameters>
228228
<Docs>
229-
<param name="completionHandler">To be added.</param>
229+
<param name="completionHandler">A handler to run with all the cookies.</param>
230230
<summary>Passes all the cookies to the provided <paramref name="completionHandler" />.</summary>
231231
<remarks>To be added.</remarks>
232232
</Docs>
@@ -244,7 +244,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
244244
</ReturnValue>
245245
<Parameters />
246246
<Docs>
247-
<summary>Passes all the cookies to the provided <paramref name="completionHandler" />.</summary>
247+
<summary>Gets all the cookies and returns a task that provides the result.</summary>
248248
<returns>
249249
<para class="improve-task-t-return-type-description">A task that represents the asynchronous GetAllCookies operation. The value of the TResult parameter is of type MonoTouch.Foundation.NSHttpCookie[].</para>
250250
</returns>
@@ -271,7 +271,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
271271
<Parameter Name="observer" Type="MonoTouch.WebKit.IWKHttpCookieStoreObserver" />
272272
</Parameters>
273273
<Docs>
274-
<param name="observer">To be added.</param>
274+
<param name="observer">The observer to remove.</param>
275275
<summary>Removes the specified <paramref name="observer" /> from the cookie store.</summary>
276276
<remarks>To be added.</remarks>
277277
</Docs>
@@ -303,9 +303,9 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
303303
</Parameter>
304304
</Parameters>
305305
<Docs>
306-
<param name="cookie">To be added.</param>
306+
<param name="cookie">The cookie to set.</param>
307307
<param name="completionHandler">
308-
<para>To be added.</para>
308+
<para>A handler to run after the operation completes.</para>
309309
<para tool="nullallowed">This parameter can be <see langword="null" />.</para>
310310
</param>
311311
<summary>Sets the specified <paramref name="cookie" /> and runs a handler when the operation completes.</summary>
@@ -327,7 +327,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
327327
<Parameter Name="cookie" Type="MonoTouch.Foundation.NSHttpCookie" />
328328
</Parameters>
329329
<Docs>
330-
<param name="cookie">To be added.</param>
330+
<param name="cookie">The cookie to set.</param>
331331
<summary>Sets the specified and runs a handler when the operation completes.</summary>
332332
<returns>A task that represents the asynchronous SetCookie operation</returns>
333333
<remarks />

en/MonoTouch.WebKit/WKHttpCookieStoreObserver_Extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</Parameters>
3232
<Docs>
3333
<param name="This">The instance on which this method operates.</param>
34-
<param name="cookieStore">To be added.</param>
34+
<param name="cookieStore">The store that changed.</param>
3535
<summary>Method that is called when a cookie changes in the cookie store.</summary>
3636
<remarks>To be added.</remarks>
3737
</Docs>

en/MonoTouch.WebKit/WKUserContentController.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
207207
<Parameter Name="contentRuleList" Type="MonoTouch.WebKit.WKContentRuleList" />
208208
</Parameters>
209209
<Docs>
210-
<param name="contentRuleList">To be added.</param>
210+
<param name="contentRuleList">The content rule list to add.</param>
211211
<summary>Adds the specified list of content rules.</summary>
212212
<remarks>To be added.</remarks>
213213
</Docs>
@@ -427,7 +427,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
427427
<Parameter Name="contentRuleList" Type="MonoTouch.WebKit.WKContentRuleList" />
428428
</Parameters>
429429
<Docs>
430-
<param name="contentRuleList">To be added.</param>
430+
<param name="contentRuleList">The content rule list to remove.</param>
431431
<summary>Removes the specified content rule list.</summary>
432432
<remarks>To be added.</remarks>
433433
</Docs>

en/MonoTouch.WebKit/WKWebView.xml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,7 @@ myTheme.TintColor = UIColor.Red;
11471147
<Parameter Name="urlScheme" Type="System.String" />
11481148
</Parameters>
11491149
<Docs>
1150-
<param name="urlScheme">To be added.</param>
1150+
<param name="urlScheme">The URL scheme to check.</param>
11511151
<summary>Returns <see langword="true" /> if the web view has a handler for the specified url scheme.</summary>
11521152
<returns>To be added.</returns>
11531153
<remarks>To be added.</remarks>
@@ -1605,10 +1605,10 @@ myTheme.TintColor = UIColor.Red;
16051605
</Parameters>
16061606
<Docs>
16071607
<param name="snapshotConfiguration">
1608-
<para>To be added.</para>
1608+
<para>The snapshot configuration to use.</para>
16091609
<para tool="nullallowed">This parameter can be <see langword="null" />.</para>
16101610
</param>
1611-
<param name="completionHandler">To be added.</param>
1611+
<param name="completionHandler">A completion handler that receives the image (or <see langword="null" /> if an error occurred) and the error (or <see langword="null" /> if no error occurred).</param>
16121612
<summary>Takes a snapshot of the current viewport and runs a handler that takes the resulting image and any error encountered.</summary>
16131613
<remarks>To be added.</remarks>
16141614
</Docs>
@@ -1633,10 +1633,13 @@ myTheme.TintColor = UIColor.Red;
16331633
<Parameter Name="snapshotConfiguration" Type="MonoTouch.WebKit.WKSnapshotConfiguration" />
16341634
</Parameters>
16351635
<Docs>
1636-
<param name="snapshotConfiguration">To be added. This parameter can be <see langwor="null" />.</param>
1637-
<summary>Takes a snapshot of the current viewport and runs a handler that takes the resulting image and any error encountered.</summary>
1636+
<param name="snapshotConfiguration">
1637+
<para>The snapshot configuration to use.</para>
1638+
<para tool="nullallowed">This parameter can be <see langword="null" />.</para>
1639+
</param>
1640+
<summary>Takes a snapshot of the current viewport and returns a task that takes the resulting image and any error encountered.</summary>
16381641
<returns>
1639-
<para class="improve-task-t-return-type-description">A task that represents the asynchronous TakeSnapshot operation. The value of the TResult parameter is of type MonoTouch.UIKit.UIImage,MonoTouch.Foundation.NSError.</para>
1642+
<para >A task that receives the resulting image, or <see langword="null" /> if an error occurred</para>
16401643
</returns>
16411644
<remarks>
16421645
<para copied="true">The TakeSnapshotAsync method is suitable to be used with C# async by returning control to the caller with a Task representing the operation.</para>

en/MonoTouch.WebKit/WKWebViewConfiguration.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
488488
<Parameter Name="urlScheme" Type="System.String" />
489489
</Parameters>
490490
<Docs>
491-
<param name="urlScheme">To be added.</param>
491+
<param name="urlScheme">The URL scheme for which to get a handler.</param>
492492
<summary>Returns the handler for the specified url scheme.</summary>
493493
<returns>To be added.</returns>
494494
<remarks>To be added.</remarks>
@@ -835,8 +835,8 @@ public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
835835
<Parameter Name="urlScheme" Type="System.String" />
836836
</Parameters>
837837
<Docs>
838-
<param name="urlSchemeHandler">To be added.</param>
839-
<param name="urlScheme">To be added.</param>
838+
<param name="urlSchemeHandler">The handler to set.</param>
839+
<param name="urlScheme">The URL scheme for which to set a handler.</param>
840840
<summary>Sets the handler for the specified URL scheme.</summary>
841841
<remarks>To be added.</remarks>
842842
</Docs>

0 commit comments

Comments
 (0)