Sagar Dahal
Sagar Dahal
Can you share some sample code?
I've searched up entire azure repos and can't find any trace of the class. The missing class should be in [src dir](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/communication/azure-communication-callautomation/src/main/java/com/azure/communication/callautomation/models) as per my understainding. It would be great...
Here's the link to available versions of azure-communication-calling in maven central repository. [Library versions](https://central.sonatype.dev/artifact/com.azure.android/azure-communication-calling/2.4.0-alpha.20220829.1/versions). In the example v2.0.0 is used. The said classes are neither in earlier version, nor in...
Have you considered adding the X-Real-IP header through middleware? Here's an example: ``` app.Use(async (context, next) => { string xfwdheader = "X-Forwarded-For"; string realipheader = "X-Real-IP"; if (context.Request.Headers.ContainsKey(xfwdheader) && !context.Request.Headers.ContainsKey(realipheader))...
For removing a specific tab you could try removing the item from ItemSource or TemplatedItemSource depending on what you're using. For moving to a particular tab you could use the...