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
Copy file name to clipboardExpand all lines: articles/communication-services/tutorials/chat-interop/includes/meeting-interop-features-file-attachment-csharp.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ For example, the following JSON shows what `ChatAttachment` might look like for
57
57
]
58
58
```
59
59
60
-
Now let's go back to the event handler you created in the previous [quickstart](../../../quickstarts/chat/meeting-interop.md) and add some extra logic to handle attachments with the `ChatAttachmentType` property of `file`:
60
+
Now go back to the event handler you created in the previous [quickstart](../../../quickstarts/chat/meeting-interop.md) and add some extra logic to handle attachments with the `ChatAttachmentType` property of `file`:
Copy file name to clipboardExpand all lines: articles/communication-services/tutorials/chat-interop/includes/meeting-interop-features-inline-image-receiving-csharp.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ The following JSON is an example of what `ChatAttachment` might look like for an
76
76
]
77
77
```
78
78
79
-
Now, go back and replace the code to add extra logic to parse and fetch the image attachments.
79
+
Now go back and replace the code to add extra logic to parse and fetch the image attachments:
Copy file name to clipboardExpand all lines: articles/communication-services/tutorials/chat-interop/includes/meeting-interop-features-inline-image-receiving-javascript.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ To copy an image, Teams users have two options:
18
18
19
19
In this tutorial, you learn what you need to do when you:
20
20
21
-
-[Receive an inline image](#handle-received-inline-images-in-new-message-event)
22
-
-[Send out an inline image](#handle-sending-inline-images-in-new-message-request)
21
+
-[Receive an inline image](#handle-received-inline-images-in-a-new-message-event)
22
+
-[Send out an inline image](#handle-sending-inline-images-in-a-new-message-request)
23
23
24
24
> [!NOTE]
25
25
> The ability to send inline images is currently available in public preview. It's only available for JavaScript. For receiving inline images, it's currently generally available. It's available for both JavaScript and C# in a Teams interoperability chat.
Now, you've made all the changes you need to render inline images for messages that come from real-time notifications.
309
+
Now you've made all the changes you need to render inline images for messages that come from real-time notifications.
310
310
311
311
### Run the code
312
312
@@ -335,7 +335,7 @@ After the Azure Communication Services user selects the preview image, an overla
335
335
336
336
In addition to handling messages with inline images, the Chat SDK for JavaScript also provides a solution to allow the communication user to send inline images to the Microsoft Teams user in an interoperability chat.
337
337
338
-
Let's take a look at the new API from `ChatThreadClient`:
338
+
Take a look at the new API from `ChatThreadClient`:
339
339
340
340
```js
341
341
var imageAttachment =awaitchatThreadClient.uploadImage(blob, file.name, {
@@ -351,7 +351,7 @@ To send an image to other chat participant, you need to:
351
351
1. Compose the message content and set an attachment to the returned object you saved in the previous step.
352
352
1. Send the new message via the `sendMessage` API from `ChatThreadClient`.
353
353
354
-
Let's create a new file picker that accepts images:
0 commit comments