heloo
Issue with code execution
static public int GetMain()
{
try
{
Console.Write("Choose A project Type 1-Backend 2-fronted 3-fullstack:");
int Choice = int.Parse(Console.ReadLine()!);
if (Choice >= 4)
{
throw new Exception();
}
return Choice;
}
catch (Exception e)
{
Console.WriteLine("Input Must Be Numbers Only!;");
GetMain();
}
}
8 replies
Cookies help Dotnet webapi
Iam using dotnet webapi trying to set cookies in browser the request returns 200 but the cookies arent getting set
CookieOptions cookOpt = new()
{
HttpOnly = true,
Expires = refresh.ExpiresAt,
SameSite = Microsoft.AspNetCore.Http.SameSiteMode.Strict,
Secure = true,
};
_httpContext.HttpContext?.Response.Cookies.Append("refreshToken", refresh.Token, cookOpt);
Console.WriteLine("set");
here is my set cookie method
27 replies
SignalR sending wont send custom headers
try{
const conn = new HubConnectionBuilder()
.withUrl("http://localhost:4000/chat", {
accessTokenFactory: () => {
console.log(token)
return token
},
withCredentials: true,
headers:{
"test":"test"
}
})
.configureLogging(LogLevel.Information).build()
await conn.start();
const re = await conn.invoke("CreateChatRoom", "num", id); console.log(re) }catch(e){ console.log(e) } _httpContext.HttpContext.Request.Headers.ToList().ForEach(e => Console.WriteLine(e)); i wont get the custom or auth headers on the server
await conn.start();
const re = await conn.invoke("CreateChatRoom", "num", id); console.log(re) }catch(e){ console.log(e) } _httpContext.HttpContext.Request.Headers.ToList().ForEach(e => Console.WriteLine(e)); i wont get the custom or auth headers on the server
27 replies
EF Error SQLite Error 1: 'no such table: __EFMigrationsHistory'. when i run dotnet ef databas update
iam using linux and vs code .Net 7 was following this tutorial https://www.youtube.com/watch?v=PDiRDNNc2tw&t=394s and ran into this issue
23 replies