@@ -89,37 +89,37 @@ var layout = new GridLayout(
89
89
columns : 2 ,
90
90
inputIds : new List <List <string >>
91
91
{
92
- new List <string > { " jill " , " jack " }, new List <string > { " jane " , " jerry " }
92
+ new List <string > { " Jill " , " Jack " }, new List <string > { " Jane " , " Jerry " }
93
93
})
94
94
{
95
95
Resolution = new (1920 , 1080 )
96
96
};
97
97
98
98
var inputs = new Dictionary <string , MediaInput >()
99
99
{
100
- [" jill " ] = new ParticipantInput
100
+ [" Jill " ] = new ParticipantInput
101
101
(
102
102
id : new MicrosoftTeamsUserIdentifier (" f3ba9014-6dca-4456-8ec0-fa03cfa2b7b7" ),
103
103
call : " teamsMeeting" )
104
104
{
105
105
PlaceholderImageUri = " https://imageendpoint"
106
106
},
107
- [" jack " ] = new ParticipantInput
107
+ [" Jack " ] = new ParticipantInput
108
108
(
109
109
id : new MicrosoftTeamsUserIdentifier (" fa4337b5-f13a-41c5-a34f-f2aa46699b61" ),
110
110
call : " teamsMeeting" )
111
111
{
112
112
PlaceholderImageUri = " https://imageendpoint"
113
113
},
114
- [" jane " ] = new ParticipantInput
114
+ [" Jane " ] = new ParticipantInput
115
115
(
116
116
id : new MicrosoftTeamsUserIdentifier (" 2dd69470-dc25-49cf-b5c3-f562f08bf3b2" ),
117
117
call : " teamsMeeting"
118
118
)
119
119
{
120
120
PlaceholderImageUri = " https://imageendpoint"
121
121
},
122
- [" jerry " ] = new ParticipantInput
122
+ [" Jerry " ] = new ParticipantInput
123
123
(
124
124
id : new MicrosoftTeamsUserIdentifier (" 30e29fde-ac1c-448f-bb34-0f3448d5a677" ),
125
125
call : " teamsMeeting" )
@@ -172,7 +172,7 @@ To upsert inputs from the media composition object, use the `UpsertInputsAsync`
172
172
``` csharp
173
173
var inputsToUpsert = new Dictionary <string , MediaInput >()
174
174
{
175
- [" james " ] = new ParticipantInput
175
+ [" James " ] = new ParticipantInput
176
176
(
177
177
id : new MicrosoftTeamsUserIdentifier (" f3ba9014-6dca-4456-8ec0-fa03cfa2b70p" ),
178
178
call : " teamsMeeting"
@@ -189,7 +189,7 @@ You can also explictly remove inputs from the list.
189
189
``` csharp
190
190
var inputIdsToRemove = new List <string >()
191
191
{
192
- " jane " , " jerry "
192
+ " Jane " , " Jerry "
193
193
};
194
194
var response = await mediaCompositionClient .RemoveInputsAsync (mediaCompositionId , inputIdsToRemove );
195
195
```
0 commit comments