-
Book Overview & Buying
-
Table Of Contents
Microsoft Silverlight 5 and Windows Azure Enterprise Integration
By :
In this book, you will find a number of styles of text that distinguish different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
A block of code is set as follows:
using System.ServiceModel;
namespace WebRole1
{
[ServiceContract]
public interface IHelloWorldService
{
[OperationContract]
string GenerateHelloWorldGreeting();
}
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
using System; using Microsoft.WindowsAzure.ServiceRuntime; namespace WebRole1 { public class HelloWorldService : IHelloWorldService { public string GenerateHelloWorldGreeting() { var currentTime = DateTime.Now.ToLongTimeString(); var instanceId = RoleEnvironment.CurrentRoleInstance.Id; return string.Format("Hello World! The server time is {0}. Processed by {1}", currentTime, instanceId); } } }
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: "Right-click on the Silverlight project HelloWorldSilverlightProject and select Add Service Reference. Click on Discover to allow Visual Studio to automatically detect the WCF service in the solution".
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
Change the font size
Change margin width
Change background colour