Working with attachments in PDF using C#
https://medium.com/@andruhovski/working-with-attachments-in-pdf-using-c-c21e2c42e0c2
https://medium.com/@andruhovski/working-with-attachments-in-pdf-using-c-c21e2c42e0c2
Medium
Working with attachments in PDF using C#
The main goal of the PDF standard is to make it easy to share documents between different operating systems and devices while preserving…
Migrating to ASP.NET Core Tag Helpers
Ed Charbeneau explores the common patterns used for ASP.NET Core Tag Helpers and covers what's needed to migrate from HTML Helpers to Tag Helpers.
https://www.telerik.com/blogs/migrating-to-asp-dotnet-core-tag-helpers
Ed Charbeneau explores the common patterns used for ASP.NET Core Tag Helpers and covers what's needed to migrate from HTML Helpers to Tag Helpers.
https://www.telerik.com/blogs/migrating-to-asp-dotnet-core-tag-helpers
Telerik Blogs
Migrating to ASP.NET Core Tag Helpers
An article that introduces the concept of Tag Helpers in ASP.NET Core and how to use them effectively when migrating an ASP.NET project.
How to extract text from PDF with C# and Aspose.Cloud REST API.
https://www.reddit.com/r/aspose_pdf_for_cloud/comments/8gr5km/how_to_extract_text_from_pdf_in_c/
https://www.reddit.com/r/aspose_pdf_for_cloud/comments/8gr5km/how_to_extract_text_from_pdf_in_c/
reddit
How to extract text from PDF in C#
Aspose.PDF for Cloud has a [text manipulation API](https://apireference.aspose.cloud/pdf/#!/Text/GetText) by which we can extract text from PDF...
ASP.NET Core Unit Testing For Security Attributes
David Pine writes a unit test to check that the AuthorizeAttribute is set on various controller classes or even controller actions for his ASP.NET Core Web API endpoints.
https://davidpine.net/blog/asp-net-core-security-unit-testing/
David Pine writes a unit test to check that the AuthorizeAttribute is set on various controller classes or even controller actions for his ASP.NET Core Web API endpoints.
https://davidpine.net/blog/asp-net-core-security-unit-testing/
davidpine.net
ASP.NET Core Unit Testing For Security Attributes
Authorization Attribute Safety Net
C# 7.1, 7.2 and 7.3 - New Features (Updated)
C# 7 has added a number of new features to the language. This tutorial looks at the new features added to the minor versions of C# i.e. C# 7.1, 7.2 and and 7.3.
http://www.dotnetcurry.com/ShowArticle.aspx?ID=1437
C# 7 has added a number of new features to the language. This tutorial looks at the new features added to the minor versions of C# i.e. C# 7.1, 7.2 and and 7.3.
http://www.dotnetcurry.com/ShowArticle.aspx?ID=1437
Dotnetcurry
C# 7.1, 7.2 and 7.3 - New Features (Updated) | DotNetCurry
C# 7 has added a number of new features to the language. This tutorial looks at the new features added to the minor versions of C# i.e. C# 7.1, 7.2 and and 7.3.
C# ALGORITHMS
This repository is not directly related to Asp.net core, but seem to be useful in web apps.
https://github.com/aalhour/C-Sharp-Algorithms
This repository is not directly related to Asp.net core, but seem to be useful in web apps.
https://github.com/aalhour/C-Sharp-Algorithms
GitHub
GitHub - aalhour/C-Sharp-Algorithms: :books: Plug-and-play class-library project of standard Data Structures and Algorithms in…
:books: :chart_with_upwards_trend: Plug-and-play class-library project of standard Data Structures and Algorithms in C# - GitHub - aalhour/C-Sharp-Algorithms: :books: Plug-and-play class-library pr...
👍1
Article: Default Interface Methods in C# 8
Default interface methods are included in a new feature proposal for C# 8, which will allow developers to use the traits programming technique. Based on an existing language feature found in Java, traits are an OOP technology that promotes the reuse of methods between unrelated classes.
By Bassam Alugili
http://www.infoq.com/articles/default-interface-methods-cs8?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=.NET
Default interface methods are included in a new feature proposal for C# 8, which will allow developers to use the traits programming technique. Based on an existing language feature found in Java, traits are an OOP technology that promotes the reuse of methods between unrelated classes.
By Bassam Alugili
http://www.infoq.com/articles/default-interface-methods-cs8?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=.NET
InfoQ
Default Interface Methods in C# 8
Default interface methods are included in a new feature proposal for C# 8, which will allow developers to use the traits programming technique. Based on an existing language feature found in Java, traits are an OOP technology that promotes the reuse of methods…
In today’s article, we will see how to perform simple CRUD operations in ASP.NET Core Web API using ADO.NET. https://www.c-sharpcorner.com/article/crud-operations-in-asp-net-core-web-api-using-ado-net/
C-Sharpcorner
CRUD Operations In ASP.NET Core Web API Using ADO.NET
In today’s article, we will see how to perform simple CRUD operations in ASP.NET Core Web API using ADO.NET.
Why isn't my ASP.NET Core environment-specific configuration loading?
In this post a describe an issue I was having in which my application wouldn't load my appsettings.Development.json file when running in Docker on Linux
https://andrewlock.net/why-isnt-my-asp-net-core-environment-specific-configuration-loading/
In this post a describe an issue I was having in which my application wouldn't load my appsettings.Development.json file when running in Docker on Linux
https://andrewlock.net/why-isnt-my-asp-net-core-environment-specific-configuration-loading/
Andrew Lock | .NET Escapades
Why isn't my ASP.NET Core environment-specific configuration loading?
In this post I describe an issue I was having in which my application wouldn't load my appsettings.Development.json file when running in Docker on Linux
Disable Automatic Model State Validation in ASP.NET Core 2.1
Virendra Dugar disables automatic model state validation in ASP.NET Core 2.1 to return the custom error instead of the 400 bad request error.
http://www.talkingdotnet.com/disable-automatic-model-state-validation-in-asp-net-core-2-1/
Virendra Dugar disables automatic model state validation in ASP.NET Core 2.1 to return the custom error instead of the 400 bad request error.
http://www.talkingdotnet.com/disable-automatic-model-state-validation-in-asp-net-core-2-1/
Talking Dotnet
Disable Automatic Model State Validation in ASP.NET Core 2.1 #aspnetcore
Find out how to disable automatic model state validation in ASP.NET Core 2.1, which is enabled by default via APIController attribute.
Analyzing a memory leak discovered by our build server
A few weeks ago, I was working on a feature in Rider when I received a build failure e-mail from TeamCity, our continuous integration service. I was not allowed to merge my feature into the main product as it was causing a … Continue reading →
The post Analyzing a memory leak discovered by our build server appeared first on .NET Tools Blog.
https://blog.jetbrains.com/dotnet/2018/10/02/analyzing-memory-leak-discovered-build-server/
A few weeks ago, I was working on a feature in Rider when I received a build failure e-mail from TeamCity, our continuous integration service. I was not allowed to merge my feature into the main product as it was causing a … Continue reading →
The post Analyzing a memory leak discovered by our build server appeared first on .NET Tools Blog.
https://blog.jetbrains.com/dotnet/2018/10/02/analyzing-memory-leak-discovered-build-server/
JetBrains Blog
Analyzing a memory leak discovered by our build server – .NET Tools Blog | JetBrains
A few weeks ago, I was working on a feature in Rider when I received a build failure e-mail from TeamCity, our continuous integration service. I was not allowed to merge my feature into the main produ