-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add - doc - Added TEL-AV and SOUND support
--- We've finally added both the Kana SOUND:[...] as X-VISUALCARD-KANA:[...] and TEL-AV:[...] as TEL;TYPE=VIDEO:[...]. --- Type: add Breaking: False Doc Required: True Part: 1/1
- Loading branch information
Showing
2 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,6 +95,12 @@ public static class ContactData | |
""" | ||
; | ||
|
||
private static readonly string singleMeCardContactFull = | ||
""" | ||
MECARD:N:Sanders,John,,,;SOUND:Saunders,John;TEL:495-522-3560;TEL-AV:495-522-3550;EMAIL:[email protected];ADR:,,Los Angeles,,,,USA;NOTE:Note test for VisualCard;; | ||
""" | ||
; | ||
|
||
private static readonly string singleVcardContactFromMeCard = | ||
""" | ||
BEGIN:VCARD | ||
|
@@ -110,6 +116,23 @@ public static class ContactData | |
""" | ||
; | ||
|
||
private static readonly string singleVcardContactFullFromMeCard = | ||
""" | ||
BEGIN:VCARD | ||
VERSION:3.0 | ||
FN:John Sanders | ||
NOTE:Note test for VisualCard | ||
N:Sanders;John;;; | ||
TEL:495-522-3560 | ||
TEL;TYPE=VIDEO:495-522-3550 | ||
ADR:;;Los Angeles;;;;USA | ||
EMAIL:[email protected] | ||
X-VISUALCARD-KANA:Saunders;John | ||
END:VCARD | ||
|
||
""" | ||
; | ||
|
||
private static readonly string singleVcardTwoContact = | ||
""" | ||
BEGIN:VCARD | ||
|
@@ -557,6 +580,9 @@ public static class ContactData | |
[ | ||
singleMeCardContact, | ||
], | ||
[ | ||
singleMeCardContactFull, | ||
], | ||
]; | ||
|
||
/// <summary> | ||
|
@@ -570,6 +596,9 @@ public static class ContactData | |
[ | ||
(singleMeCardContact, singleVcardContactFromMeCard), | ||
], | ||
[ | ||
(singleMeCardContactFull, singleVcardContactFullFromMeCard), | ||
], | ||
]; | ||
|
||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters