Kamran Shahid
Kamran Shahid
I am checking the possibility of passing a custom attribute (let's say mobile) and get user from the Radius. Any such command possible
What i wanted is "The Password must have a minimum/maximum of 8 characters, including 1 special character, 1 digit and once capital letter." I have a following expression ^((?=.*\d)(?=.*[A-Z])(?=.*\W).{8,8})$ But...
I am creating Connection string dynamically. when i am leaving my default connection string to empty my application get into infinite loop. I am using .net core 3.1. On investigation...
Just checking the repository and it seems there isn't much activity recently. What's the plan with latest release. log4net itself have released 2.0.12 release but this repository is referencing 2.0.8....
I have implemented validation as per https://www.twilio.com/docs/usage/tutorials/how-to-secure-your-csharp-aspnet-core-app-by-validating-incoming-twilio-requests I have my .net core 3.0 application where callback url is like https://mydomain.com:81/Twilio/TwilioAction Request validator seems always rejecting the validation. Same code with...
I am using .net core 3.1 with dapper 2.0.35 I am getting error "No columns were selected" when using QueryMultiple My code looks like following ```cs public static List GetEntityObjectFromClientId(string...
tried with ` var client = new Client("cn=developer,dc=shihadeh,dc=intern", "shihadeh.intern", "developer_pass", "LDAP//localhost:389"); ` but always getting ldap server not available Same server when i tried to access via java code then...
is there anyway i can stop getting .net core 5.0 packages in nuget package update for my .net core 3.1 application. I have some .net core console application (which runs...
I have a swagger editor hosted locally on some https url. My Api's are on http. when calling the api i am getting above mentioned error. Is there any way...
I was use to log4net where i can do buffer logging. Any possibility of buffered logging in serilog?