Search results for 'mega888 Malaysia, [OFFICIAL | winbox-login.com] , FREE 10, BTI , [OFFICIAL | winbox-login.com] Vp'

How To Notify Clients of Cosmos DB Changes with Azure SignalR and Azure Functions This is the fourth part in a series of articles. The Cosmos DB Azure Functions trigger can be used i Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/How-To-Notify-Clients-of-Cosmos-DB-Changes-with-Azure-SignalR-and-Azure-Functions
Writing Azure Cosmos DB Data from Azure Functions This is the third part in a series of articles. In part 2 of this series we saw how to read data fro Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/Writing-Azure-Cosmos-DB-Data-from-Azure-Functions
Reading Azure Cosmos DB Data In Azure Functions This is the second part in a series of articles. In addition to triggering a function when Cosmos DB Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/Reading-Azure-Cosmos-DB-Data-In-Azure-Functions
Getting Started with Azure Cosmos DB and Azure Functions This is the first part in a series of articles. Azure Cosmos DB is a “globally distributed, mu Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/Getting-Started-with-Azure-Cosmos-DB-and-Azure-Functions
Diagnosing Failing Tests More Easily and Improving Test Code Readability Sometimes the assertions that come bundled with a testing framework are suboptimal in that they do n Type: Post
Tags : testing, .net, .net core, C#
http://dontcodetired.com/blog/post/Diagnosing-Failing-Tests-More-Easily-and-Improving-Test-Code-Readability
Using C# Source Generators with Microsoft Feature Management Feature Flags C# Source Generators allow you to generate and compile source code dynamically. You can read more ab Type: Post
Tags : .net, .net core, c#, code generation, FeatureManagement, featuretoggle
http://dontcodetired.com/blog/post/Using-C-Source-Generators-with-Microsoft-Feature-Management-Feature-Flags
Microsoft Feature Flags: Controlling Features with Feature Filters (Microsoft.FeatureManagement) This is the third part in a series. EDIT: my Feature Management Pluralsight training course is now a Type: Post
Tags : .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Microsoft-Feature-Flags-Controlling-Features-with-Feature-Filters-(MicrosoftFeatureManagement)
Microsoft Feature Flags: Implementing Custom Feature Filters (Microsoft.FeatureManagement) This is part four in a series of articles. In part three I introduced the concept of feature filters Type: Post
Tags : .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Microsoft-Feature-Flags-Implementing-Custom-Feature-Filters-(MicrosoftFeatureManagement)
Preventing Inconsistent Feature Flag Values During a Single Request (Microsoft.FeatureManagement) This is part six in a series of articles. EDIT: my Feature Management Pluralsight training course is Type: Post
Tags : .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Preventing-Inconsistent-Feature-Flag-Values-During-a-Single-Request-(MicrosoftFeatureManagement)
Support Multiple Versions of .NET From A Single Class Library (.NET multi-targeting) ".NET implementations come in a few different versions or “flavors” including .NE Framework, .NET Core, and the evolution of .NET Core into .NET 5+. There’s also .NET Standard which is not an implement ..." Type: Post
Tags : C#, .net
http://dontcodetired.com/blog/post/Support-Multiple-Versions-of-NET-From-A-Single-Class-Library-(NET-multi-targeting)
What’s New in C# 10: Create Constants Using String Interpolation "This is part of a series on the new features introduced with C# 10.Prior to C# 10 if you wanted to create a const that was made up from other constants you had to add the string fragments togeter, for ..." Type: Post http://dontcodetired.com/blog/post/Whats-New-in-C-10-Create-Constants-Using-String-Interpolation
What’s New in C# 10: Take Control of Interpolated String Handling "This is part of a series on the new features introduced with C# 10.In C# you can create an interpolated string such as: $"{DateTime.Now}: starting..."The compiler will transform this to a single strin ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Take-Control-of-Interpolated-String-Handling
What’s New in C# 10: New Possibilities for Validation and Logging Methods "This is part of a series on the new features introduced with C# 10.From C# 10 we can make use of the [CallerArgumentExpression] attribute.This attribute can be applied to a parameter to get informatio ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-New-Possibilities-for-Validation-and-Logging-Methods
What’s New in C# 10: Simplify Argument Null Checking Code "This is part of a series on the new features introduced with C# 10.Prior to C# 10 you may have had code similar to the following: public static string Join(string a, string b) { i ..." Type: Post
Tags : cs10newseries, c#, .net, .net core, C#10
http://dontcodetired.com/blog/post/Whats-New-in-C-10-Simplify-Argument-Null-Checking-Code
ICYMI C# 9 New Features: Create Immutable Objects with Records "This is part of a series of articles on new features introduced in C# 9. C# 9 introduced a new type of object that is neither a class or a struct. This new type is called a  record. In C# 9 a rec ..." Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Create-Immutable-Objects-with-Records
New Pluralsight Course Update: Working with Nulls in C# A new version of my Working with Nulls in C# Pluralsight course was just released. This new version Type: Post
Tags : c#, .net
http://dontcodetired.com/blog/post/New-Pluralsight-Course-Update-Working-with-Nulls-in-C
ICYMI C# 9 New Features: Reduce Boilerplate Constructor Code with Init Only Property Setters This is part of a series of articles on new features introduced in C# 9. Prior to C# 9 if you wanted Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Reduce-Boilerplate-Constructor-Code-with-Init-Only-Property-Setters
ICYMI C# 9 New Features: Adding foreach Support To Any Type This is part of a series of articles on new features introduced in C# 9. Prior to C# 9 you could add Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Adding-foreach-Support-To-Any-Type
ICYMI C# 9 New Features: Reducing Code with Target-typed New Expressions This is part of a series of articles on new features introduced in C# 9. C# 9 introduced some enhanc Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Reducing-Code-with-Target-typed-New-Expressions
ICYMI C# 9 New Features: More Pattern Matching Features This is part of a series of articles on new features introduced in C# 9. Pattern matching was introd Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-More-Pattern-Matching-Features