jacobm2778
jacobm2778
CC#
Created by IcyIme on 1/4/2024 in #help
Blazor roles
It's gonna be tough to help you if we don't know more. You say tutorials aren't helping but what exactly is the problem?
2 replies
CC#
Created by quintendc on 1/4/2024 in #help
internal API
Client Credential Flow
16 replies
CC#
Created by khauvannam on 1/9/2024 in #help
My HttpContext.User always return null
is this for blazor? Once the session starts and signal r kicks in there isn't an http context any longer. You have to catch it before it goes away or iirc the right way is to use AuthenticationStateProvider.
6 replies
CC#
Created by Eldritch.Dev on 1/9/2024 in #help
Does anybody know in Azure Active Directory B2C what should I use instead of a ROPC flow for an endp
2 replies
CC#
Created by Eren on 1/14/2024 in #help
My functions wont work and i dont know what i am doing wrong
To be more specific, if those functions are static as well you need to ensure you have those classes imported so that you may call them. Or if not, ensure imports are correct and create new object instances and call the function from those objects.
7 replies
CC#
Created by Eren on 1/14/2024 in #help
My functions wont work and i dont know what i am doing wrong
The other two errors probably just mean that the functions you are calling don't live in the file that is calling them. You should check imports/namespaces to fix this.
7 replies
CC#
Created by Eren on 1/14/2024 in #help
My functions wont work and i dont know what i am doing wrong
Error CS0176 means you are trying to call the function by creating an object from a class instead of calling it from the class directly which is required for static. For example, when using statics you can't do something like MyClass object = new () then object.StaticFunction(), you have to do MyClass.StaticFunction.
7 replies