You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
linphone-tutorials/uwp/cs/04_BasicChat
Thibault Lemaire aca479888a
Give the UWP Tutorial a little refresher
3 years ago
..
Assets Tutorial for LinphoneSDK x UWP - C# 3 years ago
Properties Tutorial for LinphoneSDK x UWP - C# 3 years ago
Service Give the UWP Tutorial a little refresher 3 years ago
Views Give the UWP Tutorial a little refresher 3 years ago
04_BasicChat.csproj Give the UWP Tutorial a little refresher 3 years ago
App.xaml Tutorial for LinphoneSDK x UWP - C# 3 years ago
App.xaml.cs Tutorial for LinphoneSDK x UWP - C# 3 years ago
Package.appxmanifest Tutorial for LinphoneSDK x UWP - C# 3 years ago
Readme.md Give the UWP Tutorial a little refresher 3 years ago

Readme.md

Linphone X UWP tutorial 04_BasicChat

Second big step in this tutorial, we can now communicate in basic chat rooms.

In this part you are going to learn how to send and receive text messages over SIP using LinphoneSDK. For our first step with ChatRoom we are going to create only one to one basic ChatRoom (no encryption, no ephemeral), and for now the tutorial app will only support text messages.

New/Updated files :

04_BasicChat
└───Service :
│   │   CoreService.cs : A singleton service which contains the Linphone.Core. 
│   │               We added some code to create new chat rooms here.
│   │   
│   │   NavigationService.cs : A small service used to keep references to pages currently displayed.
│
└───Views :
│   │    
│   │   ChatPage.xaml(.cs) : This is the frame displayed when you select a chat room.     
│   │               For now it's a basic page where you can send messages and see your 
│   │               conversation history.
│   │     
│   │   ChatsPage.xaml(.cs) : In this page we list all the existing chat rooms. When you select 
│   │               one of them a ChatPage is rendered. You can also create new ChatRoom here.   
│   │
│   │   NavigationRoot.xaml(.cs) : The navigation page, you can now navigate to the ChatsPage !