Showing results for September 2017 - Page 2 of 2 - Developer Support

Sep 17, 2017
1
2

Differentiating between Azure Virtual Network (VNet) and AWS Virtual Private Cloud (VPC)

Developer Support
Developer Support

In this post, Senior ADM Fidelis Ekezue shares insights into similarities and differences between Azure VNets and AWS VPC.It’s important to note that in the cloud, features and capabilities are in a state of constant change to improve services and adapt to industry demands.  To the best of our knowledge, the information in this article is ...

TeamAzureVNet
Sep 15, 2017
0
0

Software Application Architecture, JUST DO IT!

Developer Support
Developer Support

In this post, Senior Application Development Manager, Alphonsus Pillai, spotlights the importance of a good architecture as the foundation of application quality and ROI. I am amazed at the amount of application development, without proper footings and foundations. We could never imagine building a house without proper design, construction, ...

TeamServicesArchitecture
Sep 13, 2017
0
0

Jump-Start: Swaggerizing ASP.NET Core

Pam Lahoud
Pam Lahoud

In his latest blog post, Premier Developer consultant Rob Vettor gives an overview of how to use Swagger with your ASP.NET Core application.As a consumer of an API service, how do you know what functionality the service exposes?Easy answer: Swagger supportSwagger is a framework that enables you to visually discover an API service. With it, you can ...

.NET Coreasp.net coreRob Vettor
Sep 12, 2017
0
0

Managed object internals, Part 3. The layout of a managed array

Sergey Tepliakov
Sergey Tepliakov

Arrays are one of the basic building blocks of every applications. Even if you do not use arrays directly every day you definitely use them indirectly as part of almost any library. C# has arrays from the very beginning and back in the day that was the only "generic"-like and type safe data structure available. Today you may use them less ...

seteplia
Sep 6, 2017
1
1

Managed object internals, Part 2. Object header layout and the cost of locking

Sergey Tepliakov
Sergey Tepliakov

Working on my current project I’ve faced a very interesting situation. For each object of a given type, I had to create a monotonically growing identifier with few caveats: 1) the solution should work in multithreaded environment 2) the number of objects is fairly large, up to 10 million instances and 3) identity should be created lazily because ...

seteplia
Sep 5, 2017
0
0

Role Based Access Control in ASP.NET MVC

Monu Bambroo
Monu Bambroo

In this post, Premier Developer consultant Lizet Pena De Sola explains Role Based Access Control in ASP.NET MVC. Role Based Access Control in MVC is pretty straight forward. There is also a way to do claims access control, but the most common way is based on roles. To show or hide action links in a view depending on the user role we can use ...

Securityasp.net