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
Improve XML documentation for:
- `VSAccountProviderAuthenticationSchemeExtensions`
- `EKCalendarChooserSelectionStyle`
- `EKCalendarChooserDisplayStyle`
- `EKEventViewAction`
- `EKEventEditViewAction`
- `CMMagneticFieldCalibrationAccuracy`
- `SSReadingListError`
- `CTErrorDomain`
- `CTCellularDataRestrictedState`
- `CTCellularPlanProvisioningAddPlanResult`
Each type is documented in a separate commit. The Cecil documentation baseline is updated for the newly documented `CTCellularPlanProvisioningAddPlanResult` API.
🤖 Pull request created by Copilot
---------
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: src/EventKitUI/Defs.cs
+4-8Lines changed: 4 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -14,31 +14,28 @@ namespace EventKitUI {
14
14
// untyped enum -> EKCalendarChooser.h
15
15
// iOS 9 promoted this to an NSInteger - which breaks compatibility
16
16
/// <summary>An enumeration whose values specify whether a single or multiple calendars can be chosen by an <see cref="EventKitUI.EKCalendarChooser" /> object.</summary>
17
-
/// <remarks>To be added.</remarks>
18
17
[Native]
19
18
publicenumEKCalendarChooserSelectionStyle:long{
20
-
/// <summary>To be added.</summary>
19
+
/// <summary>Allows the user to select one calendar.</summary>
21
20
Single,
22
-
/// <summary>To be added.</summary>
21
+
/// <summary>Allows the user to select multiple calendars.</summary>
23
22
Multiple,
24
23
}
25
24
26
25
// untyped enum -> EKCalendarChooser.h
27
26
// iOS 9 promoted this to an NSInteger - which breaks compatibility
28
27
/// <summary>An enumeration whose values specify which calendars are displayed by a <see cref="EventKitUI.EKCalendarChooser" />.</summary>
29
-
/// <remarks>To be added.</remarks>
30
28
[Native]
31
29
publicenumEKCalendarChooserDisplayStyle:long{
32
-
/// <summary>To be added.</summary>
30
+
/// <summary>Displays all calendars.</summary>
33
31
AllCalendars,
34
-
/// <summary>To be added.</summary>
32
+
/// <summary>Displays only calendars that the user can modify.</summary>
35
33
WritableCalendarsOnly,
36
34
}
37
35
38
36
// untyped enum -> EKEventViewController.h
39
37
// iOS 9 promoted this to an NSInteger - which breaks compatibility
40
38
/// <summary>Enumerates actions that a user can take to dismiss an event view controller.</summary>
41
-
/// <remarks>To be added.</remarks>
42
39
[Native]
43
40
publicenumEKEventViewAction:long{
44
41
/// <summary>The user tapped "Done".</summary>
@@ -52,7 +49,6 @@ public enum EKEventViewAction : long {
52
49
// untyped enum -> EKEventEditViewController.h
53
50
// iOS 9 promoted this to an NSInteger - which breaks compatibility
54
51
/// <summary>Enumerates possible actions that a user can take when editing a view.</summary>
55
-
/// <remarks>To be added.</remarks>
56
52
[Native]
57
53
publicenumEKEventEditViewAction:long{
58
54
/// <summary>The user canceled the change to the event.</summary>
// these are less common pattern so it's not automatically generated
11
12
12
-
/// <param name="self">The instance on which this method operates.</param>
13
-
/// <summary>To be added.</summary>
14
-
/// <returns>To be added.</returns>
15
-
/// <remarks>To be added.</remarks>
13
+
/// <summary>Gets the native constants for the specified authentication schemes.</summary>
14
+
/// <param name="self">The authentication schemes to convert.</param>
15
+
/// <returns>The native constant for each authentication scheme. An element is <see langword="null" /> if the corresponding authentication scheme has no associated native constant on the current platform.</returns>
16
+
/// <exception cref="ArgumentNullException"><paramref name="self" /> is <see langword="null" />.</exception>
@@ -24,10 +25,11 @@ public static partial class VSAccountProviderAuthenticationSchemeExtensions {
24
25
returnarray;
25
26
}
26
27
27
-
/// <param name="constants">To be added.</param>
28
-
/// <summary>To be added.</summary>
29
-
/// <returns>To be added.</returns>
30
-
/// <remarks>To be added.</remarks>
28
+
/// <summary>Gets the authentication schemes for the specified native constants.</summary>
29
+
/// <param name="constants">The native constants to convert.</param>
30
+
/// <returns>The authentication scheme for each native constant.</returns>
31
+
/// <exception cref="ArgumentNullException"><paramref name="constants" /> is <see langword="null" />.</exception>
32
+
/// <exception cref="NotSupportedException">An element in <paramref name="constants" /> has no associated authentication scheme on the current platform.</exception>
0 commit comments