Skip to content

Commit

Permalink
fixed deprecated messages
Browse files Browse the repository at this point in the history
  • Loading branch information
tj_devel709 committed Jul 14, 2021
1 parent d4ae4db commit 386fd40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/usernotifications.cs
Original file line number Diff line number Diff line change
Expand Up @@ -437,12 +437,12 @@ interface UNNotificationContent : NSCopying, NSMutableCopying, NSSecureCoding {
NSDictionary UserInfo { get; }

[NoWatch, NoTV, iOS (12, 0)]
[Deprecated (PlatformName.iOS, 15, 0, message: "summaryArgument is ignored")]
[Deprecated (PlatformName.iOS, 15, 0, message: "The property 'summaryArgument' is ignored.")]
[Export ("summaryArgument")]
string SummaryArgument { get; }

[NoWatch, NoTV, iOS (12, 0)]
[Deprecated (PlatformName.iOS, 15, 0, message: "summaryArgumentCount is ignored")]
[Deprecated (PlatformName.iOS, 15, 0, message: "The property 'summaryArgumentCount' is ignored.")]
[Export ("summaryArgumentCount")]
nuint SummaryArgumentCount { get; }

Expand Down Expand Up @@ -516,12 +516,12 @@ interface UNMutableNotificationContent {
NSDictionary UserInfo { get; set; }

[NoWatch, NoTV, iOS (12, 0)]
[Deprecated (PlatformName.iOS, 15, 0, message: "summaryArgument is ignored")]
[Deprecated (PlatformName.iOS, 15, 0, message: "The property 'summaryArgument' is ignored.")]
[Export ("summaryArgument")]
string SummaryArgument { get; set; }

[NoWatch, NoTV, iOS (12, 0)]
[Deprecated (PlatformName.iOS, 15, 0, message: "summaryArgumentCount is ignored")]
[Deprecated (PlatformName.iOS, 15, 0, message: "The property 'summaryArgumentCount' is ignored.")]
[Export ("summaryArgumentCount")]
nuint SummaryArgumentCount { get; set; }

Expand Down

0 comments on commit 386fd40

Please sign in to comment.