Microsoft Windows Server AppFabric Cookbook
上QQ阅读APP看书,第一时间看更新

Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.

Code words in text are shown as follows: "Once the Caching service is up and running, we can query it for the caches that are available in this cluster by using the Get-Cache command."

A block of code is set as follows:

internal enum AckNack
{
Ack,
Nack,
Pending,
}

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

<microsoft.applicationServer>
<monitoring>
<default
enabled="true"
connectionStringName="ConnectionString"
monitoringLevel="Troubleshooting" />

</monitoring>
</microsoft.applicationServer>

Any command-line input or output is written as follows:

Get-ASAppMonitoring -SiteName "Default Web Site" -VirtualPath /ReservationService 

New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "In IIS, click on the application and select Features View."

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.