SWEETPONY
SWEETPONY
CC#
Created by SWEETPONY on 3/31/2025 in #help
✅ How to convert controller route name to camel case automatically?
Thanks
19 replies
CC#
Created by SWEETPONY on 3/31/2025 in #help
✅ How to convert controller route name to camel case automatically?
idk why asp doesn’t have this behavior by default.. but ok
19 replies
CC#
Created by SWEETPONY on 3/21/2025 in #help
✅ How to handle websockets?
I hope I succeed
52 replies
CC#
Created by SWEETPONY on 3/21/2025 in #help
✅ How to handle websockets?
thanks for helping me! I will check this
52 replies
CC#
Created by SWEETPONY on 3/21/2025 in #help
✅ How to handle websockets?
Is it possible to use signalr only on backend side?
52 replies
CC#
Created by SWEETPONY on 3/21/2025 in #help
✅ How to handle websockets?
I would like to store this connections in list. Connection can be disposed so the main question: is it safe to save idisposable connections to list?
52 replies
CC#
Created by SWEETPONY on 3/21/2025 in #help
✅ How to handle websockets?
Hm why? I wanna send json
52 replies
CC#
Created by SWEETPONY on 3/21/2025 in #help
✅ How to handle websockets?
Client wants websockets
52 replies
CC#
Created by SWEETPONY on 3/21/2025 in #help
✅ How to handle websockets?
It will be good to use signalr but I cant. Web client doesnt want to use signalr library to communicate with backend
52 replies
CC#
Created by SWEETPONY on 3/19/2025 in #help
✅ How to make httpcontext threadsafe?
it is impossible to use signalr here
6 replies
CC#
Created by SWEETPONY on 3/19/2025 in #help
✅ How to make httpcontext threadsafe?
yes, sse
6 replies
CC#
Created by SWEETPONY on 3/15/2025 in #help
✅ How to make static field required to use from interface?
public sealed class EventProcessorFactory(IServiceProvider provider): IEventProcessorFactory
{
private static readonly Lazy<Dictionary<string, Type>> processors = new(DiscoverEventProcessors);

public IEventProcessor? GetProcessor(string eventName)
{
if(!processors.Value.TryGetValue(eventName, out var type))
return null;

return (IEventProcessor)provider.GetRequiredService(type);
}

private static Dictionary<string, Type> DiscoverEventProcessors()
{
var processorTypes = Assembly.GetExecutingAssembly().GetTypes()
.Where(t => typeof(IEventProcessor).IsAssignableFrom(t) && t.IsClass)
.ToArray();

var discoverEventProcessors = new Dictionary<string, Type>();

foreach(var processorType in processorTypes)
{
var handledEvents = processorType
.GetProperty(nameof(IEventProcessor.HandledEvents))
?.GetValue(null) as IReadOnlyCollection<string>;

foreach(var handledEvent in handledEvents ?? [])
discoverEventProcessors[handledEvent] = processorType;
}

return discoverEventProcessors;
}
}
public sealed class EventProcessorFactory(IServiceProvider provider): IEventProcessorFactory
{
private static readonly Lazy<Dictionary<string, Type>> processors = new(DiscoverEventProcessors);

public IEventProcessor? GetProcessor(string eventName)
{
if(!processors.Value.TryGetValue(eventName, out var type))
return null;

return (IEventProcessor)provider.GetRequiredService(type);
}

private static Dictionary<string, Type> DiscoverEventProcessors()
{
var processorTypes = Assembly.GetExecutingAssembly().GetTypes()
.Where(t => typeof(IEventProcessor).IsAssignableFrom(t) && t.IsClass)
.ToArray();

var discoverEventProcessors = new Dictionary<string, Type>();

foreach(var processorType in processorTypes)
{
var handledEvents = processorType
.GetProperty(nameof(IEventProcessor.HandledEvents))
?.GetValue(null) as IReadOnlyCollection<string>;

foreach(var handledEvent in handledEvents ?? [])
discoverEventProcessors[handledEvent] = processorType;
}

return discoverEventProcessors;
}
}
7 replies
CC#
Created by SWEETPONY on 3/15/2025 in #help
✅ How to make static field required to use from interface?
because I don't want to create instance of the class to read values
7 replies
CC#
Created by SWEETPONY on 3/15/2025 in #help
✅ How to make static field required to use from interface?
thanks!
7 replies
CC#
Created by SWEETPONY on 12/5/2024 in #help
Is it possible to use pattern matching here?
i was faster 🙂
10 replies
CC#
Created by SWEETPONY on 12/5/2024 in #help
Is it possible to use pattern matching here?
but it looks ugly
10 replies
CC#
Created by SWEETPONY on 12/5/2024 in #help
Is it possible to use pattern matching here?
var terminal = (isInbound, isOutbound) switch
{
(false, true) => "Inbound",
(true, false) => "Outbound",
_ => ""
};
var terminal = (isInbound, isOutbound) switch
{
(false, true) => "Inbound",
(true, false) => "Outbound",
_ => ""
};
i know this
10 replies
CC#
Created by SWEETPONY on 11/10/2024 in #help
✅ I don't undertand the error: capacity was less than the current size
oh, thanks for this!
17 replies
CC#
Created by SWEETPONY on 11/10/2024 in #help
✅ I don't undertand the error: capacity was less than the current size
yes
17 replies
CC#
Created by SWEETPONY on 11/10/2024 in #help
✅ I don't undertand the error: capacity was less than the current size
simple for was x2 faster than Parallel.For idk why
17 replies