@@ -89,37 +89,37 @@ var layout = new GridLayout(
8989 columns : 2 ,
9090 inputIds : new List <List <string >>
9191 {
92- new List <string > { " jill " , " jack " }, new List <string > { " jane " , " jerry " }
92+ new List <string > { " Jill " , " Jack " }, new List <string > { " Jane " , " Jerry " }
9393 })
9494 {
9595 Resolution = new (1920 , 1080 )
9696 };
9797
9898var inputs = new Dictionary <string , MediaInput >()
9999{
100- [" jill " ] = new ParticipantInput
100+ [" Jill " ] = new ParticipantInput
101101 (
102102 id : new MicrosoftTeamsUserIdentifier (" f3ba9014-6dca-4456-8ec0-fa03cfa2b7b7" ),
103103 call : " teamsMeeting" )
104104 {
105105 PlaceholderImageUri = " https://imageendpoint"
106106 },
107- [" jack " ] = new ParticipantInput
107+ [" Jack " ] = new ParticipantInput
108108 (
109109 id : new MicrosoftTeamsUserIdentifier (" fa4337b5-f13a-41c5-a34f-f2aa46699b61" ),
110110 call : " teamsMeeting" )
111111 {
112112 PlaceholderImageUri = " https://imageendpoint"
113113 },
114- [" jane " ] = new ParticipantInput
114+ [" Jane " ] = new ParticipantInput
115115 (
116116 id : new MicrosoftTeamsUserIdentifier (" 2dd69470-dc25-49cf-b5c3-f562f08bf3b2" ),
117117 call : " teamsMeeting"
118118 )
119119 {
120120 PlaceholderImageUri = " https://imageendpoint"
121121 },
122- [" jerry " ] = new ParticipantInput
122+ [" Jerry " ] = new ParticipantInput
123123 (
124124 id : new MicrosoftTeamsUserIdentifier (" 30e29fde-ac1c-448f-bb34-0f3448d5a677" ),
125125 call : " teamsMeeting" )
@@ -172,7 +172,7 @@ To upsert inputs from the media composition object, use the `UpsertInputsAsync`
172172``` csharp
173173var inputsToUpsert = new Dictionary <string , MediaInput >()
174174{
175- [" james " ] = new ParticipantInput
175+ [" James " ] = new ParticipantInput
176176 (
177177 id : new MicrosoftTeamsUserIdentifier (" f3ba9014-6dca-4456-8ec0-fa03cfa2b70p" ),
178178 call : " teamsMeeting"
@@ -189,7 +189,7 @@ You can also explictly remove inputs from the list.
189189``` csharp
190190var inputIdsToRemove = new List <string >()
191191{
192- " jane " , " jerry "
192+ " Jane " , " Jerry "
193193};
194194var response = await mediaCompositionClient .RemoveInputsAsync (mediaCompositionId , inputIdsToRemove );
195195```
0 commit comments