Archive for 2017

Anonymous Method / Delegate

Benjamin Perkins C#

Delegates in C# are similar to function pointers in C++ and allow methods to be passed as parameters. In this example we will create a delegate called CalculateCharge and a Withdrawal class: [sourcecode language=”csharp”] delegate decimal CalculateCharge(decimal withdrawal); class Withdrawal { public string AccountOwnerName; public decimal withdrawal; public decimal charge; public CalculateCharge calculation; } [/sourcecode] […]

Read More →

Azure App Service Disk Length Queue

Azure App Service Benjamin Perkins

It wouldn’t be prudent to divulge the intellectual property (IP) details of how Azure App Services are configured in detail, but, right or wrong, I like to point to Azure Pack Web Sites (*) as the building block of Azure App Services.  However, keep in mind that Azure Stack is a more recent version of […]

Read More →

Can you trace WCF using Failed Request Tracing

IIS Benjamin Perkins

Yes you can.  I wrote this blog a long time ago that explains how to setup a Hello World WCF service and consumer.  I have also written numerous articles about Failed Request Traces: Lab 4: Install and configure Failed Request Tracing Lab 16: Configuring Failed Request Tracing to take a memory dump Install Failed Request […]

Read More →

GENERAL_READ_ENTITY_START

IIS Benjamin Perkins

I was looking around for some understanding on the what this event within the request pipeline meant.  As seen in Figure 1, you can find this event when you are capturing a Failed Request trace. I wrote a lab about capturing Failed Request Traces here –> Lab 4: Install and configure Failed Request Tracing Figure […]

Read More →