Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The "schema generators" need to be installed from VB scripts in the C:\Program Files (x86)\Microsoft BizTalk Server 2013\SDK\Utilities\Schema Generator
folder before the first use."
A block of code is set as follows:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="Person> <xs:complexType> <xs:sequence> <xs:element name="FirstName" type="xs:string"/> <xs:element name="LastName" type="xs:string"/> <xs:element name="Age" type="xs:int"/> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
Svcutil.exe http://localhost:8081/VServiceBase?WSDL / out:WCFProxy.cs /language:c# /config:app.config /mergeConfig
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "When a new BizTalk project is added to a Visual Studio solution, you should immediately right-click on the project and select the Properties option."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.