MCAD

副标题:无

作   者:MCSD Visual C#.NET Certification All-in-One Exam Guide

分类号:

ISBN:9787505383401

微信扫一扫,移动浏览光盘

简介

本书是美国著名出版商McGraw-Hill出版的畅销认证系列丛书All-in-One之一,主要介绍了与MCAD/MCSD Visual C# .NET认证考试相关的最新考试信息。并介绍了在MCAD/MCSD Visual C# .NET认证考试70-315、70-316和70-320中的资料。读者可以学习如何使用Visual C# .NET和Visual Studio.NET编程、创建Windows窗体并与控件协同工作等内容。本书在每一章的开始都会给出考试的重点内容,并在讨论过程中介绍考试技巧,且每章的结尾都有精心设计的大量练习题,为应试者提供极具价值的指导与参考。 本书是一本全面、权威的考试用书,适用于MCAD/MCSD Visual C#.NET认证考试者及相关的技术人员。

目录

part i c#: the language

chapter 1 introduction to c# .net and the .net platform

overview of .net

so, what is .net?

application development in .net

the .net platform

the .net framework

the cls--common lanuage specifications

the clr--common language runtime

msil--microsoft intermediate language

the bcl--base class library

the .net languages

microsoft c# .net

batri c# concepts

startup

declarations

arrays

access

scopes

object-oriented programming concepts

.a brief history of object-oriented programming

just what is an object?

structs explained

the convert routine using an object-oriented approash

properties and methods of an object

classes-putting it all together

instance data vs. class data

static methods

abstraction and encapsulation



summary

test questions

test answers

chapter 2 variables and program structure

variables

value-type variables

reference-type variables

memory and variables

variable declarations

value-type variables on the stack

the parts of reference-type variables

type conversions

implicit conversions

conversion methods

boxing and unboxing

memory management

creating and destroying objects

cleaning up the objects

the structure of a c# class file

namespaces and the using directive

coding conventions

lexical structure

conunnts

identifiers

constans and read-only variables

keywords

literals

operators

statements and expressions

flow control

preprocessor directives

summary

test questions

test answers

chapter 3 advanced object-onented concepts

introduction to advanced oo topics

creating methods to hide data

using propertes to hide data



inheritance

inheritance explained

polymorphism

method overridng

using sealed

abstract classes

interfaces

why use interfaces?

extending interfaces

overioading

summary

test questions

test answers

chapter 4 strings, exceptions, and events

the string class

system.string

string building

string formatting

arrays

the system.array class

collections

overview of exception handling

throwing and catching exceptions

coding to handle errors and exceptions

creating your own exceptions

event handling

delegates

events

summary

test questions

test answers

chapter 5 visual studio.net development environment

what is visual studio .net?

the start page

get started

online community

downloads

projects



types of projects

creating a project

building the project

grouping projects into solutions

customizing visual studio .net

customizing with the start page

customizing with the options dialog box

the interface

explorers

tools

other highlights of visual studio .net

summary

test questions

test answers

part ii the c# exams: common elements

chapter 6 assemblies

the .net assembly

versioulng

deployment

security

what is in the assembly?

working with a .net assembly

creating and modifying a .net assembly

strongly named assemblies and gac

creating and implementing satellite assemblies

summary

test questions

test answers

chapter 7 resources and localization

string resources

localized formatting

implementing right-to-left mirroring and encoding

best practices

summary

test questions

test answers



chapter 8 xml and c# documentation

introduction to xml

what is xml?

html vs. xml

why use xml?

creating an xml documnt

xml declaration and processing instructions

commnts

elements

attributes

a well-formed xml document

xml documentation in c#

xml documentation tags

xml comments and visual studio .net

summary

test questions

test answers

chapter 9 debugging and testing

debugging your application

the buggy appcation

tho debuggers--cordbg and dbgclr

using the visual studio .net debugging capabilities

.net diagnostics

debugging an asp.net application

testing your application

purpose of testing

developing a test plan

summary

test questions

test answers

chapter 10 basic data-access techniques

ado.net

application models

ano.net architecture

xml and ado.net

data-access basics

sql

acid rules (transactions)



connecting to a data provider

database security

connection strings

connections

connection pooling

error handling

the conunand object

the dataset object

ado.net and xml

loading xml into a dataset

writing xml from a dataset

using the xmldatadocument object

using the dataadapter to access existing data

creating the dataadapter

updating the data source

resolving conflicts

summary

test questions

test answers

part iii exam 70-315: developing and implementing web applications

chapter 11 welcome to the internet and asp.net

the internet: its standards

the tcp/ip protocols

html

http

xml

internet architecture

static web pages--the beginning

dynamic web pages--the client story

dynamic web pages--the server story

the internet technologies

client-side technologies

server-side technologies

asp.net

hello web world!

the object model of asp.net

the request object

the response object



the server object

state or no state

the application object

the session object

summary

test questions

test answers

chapter 12 web forms: client-side programs

introduction to web forms

building your first web form

adding controls to a form

html server controls

web server controls

validation controls

custom and user controls

creating an address book web form

summary

test questions

test answers

chapter 13 server-side programs and postback operations

the asp.net object model

asp.net namespaces

the page class

state management

web services

how to write a web service

how to consume a web service

com interoperability

platform invoke

asp.net and events

the postback event

summary

test questions

test answers

chapter 14 server controls in asp.net

working with asp controls

base properties of server controls



html server controls

web server controls

user contros and custom contros

building and using a user control

building and using a custom control

dynamic control creation

summary

test questions

test answers

chapter 15 web forms and user interface

the importance of the user interface

localization

the resource manager class

page navigation

validation revisited

error handling

custom error pages

page_error()

event log

page-level traing

summary

test questions

test answers

chapter 16 consuming and manipulating data from data sources

visual studio.net support for data

using a datagrid server control

creating and using stored procedurs

data binding

error handling

accessing data programmatically

connecting to a data source

creating and configuring a command object

populate the dataset with the data from the command

the completed web form

building a data form

creating the sql statement

building the form



retrieving real-time data

looking up the address info

summary

test questions

test answers

chapter 17 making the web application available to our users

deploying a web application

caching and improving performance

configuring a web application

securing a web application

deploying a web application

installing a web application

installing iis

installing frontpage server extensions

summary

test questions

test answers

part iv exam 70-316: developing and implementing windows-based applications with

microsott visual c# .net and microsoft visual studio .net

chapter 18 introduction to windows forms

windows forms

system.windows.forms namespace and more

what is a form?

the windows forms designer

a closer look at forms

using visual inheritance

localizing your form

contrls

adding controls to a form

types of controls

setting properties of controls

event handling

what is an event?

what happens when an event occurs?

delegates

creating event handlers



summary

test questions

test answers

chapter 19 user-interface components

working with controls

specifying a control's location on a form

aligning controls on a form

managing control focus

windows forms controls

buttons, text boxes, and labels, oh my!

list boxes, combo boxes, checked list boxes, and such

tab controls

status bars

toolbars

dialog boxes

working with controls at run time

working with menus

creating a main menu

looking at the code of a main menu

handling menu events

context menus

validating user input

validating events

errorprovider control

summary

test questions

test answers

chapter 20 data in windows forms

review of ado.net object model

accessing data using visual studio .net

the college application

ado.net objects in visual studio .net

using stored procedures

what's next?

data binding

the theory of data binding

binding data at design time

binding data at run time



bindingcontext and currencymanager

exception handling

accessing data programmatically

creating a connection object

creating a command object

dataadapter and dataset

datareader

using format and parse

the format event

the parse event

summary

test questions

test answers

chapter 21 web services and com

web services

how do web services work?

building a simple web service

consundng a simple web service

how web services work

com and com+

.net and com

working with com

behind the scenes with com

plaiform invoke

summary

test questions

test answers

chapter 22 build your own windows control

methds of building windows controls

extending an existing control

creatin composite controls

building custom controls

visual studio .net support

using visual inheritance

adding design-time support to your control

adding a toolbox bitmap

adding attributes to properties

providing other design-time support



hosting your control in internet explorer

licensing a control

summary

test questions

test answers

chapter 23 deploying a windows-based application

review of assemblies

strong named assemblies

installing an assembly into gac

precompiling assemblies

deploying a windows application

creating a setup project

creating a web setup project

creating a cab project

creating a merge module project

conforming to windows standards

security policies

summary

test questions

test answers

chapter 24 configuring a windows application

configuring a windows application

machine configuration file

application configurallon file

security configuration file

.net framework configuration tool

xml configuration tags

optimizing a windows application

debug vs. release versions

precompiling

other performance enhancements

securing a windows application

code-access security

role-based security

providing user assistance

providing user help

adding accessibility featurs

localizing a windows form


using system.drawing

summary

test questions

test answers

part v exam 70-320: developing xml web services

chapter 25 introduction to xml web services and server components

the standards

xml (extensible markup language)

soap (simple object access protocol)

xml web services

uddi (universal description, discovery, and integration)

xsd, xslt and xpath

logging test results and debugging

control debugging in web.config

logging test results in an xml web service

implementing tracing in an xml web service

summary

test questions

test answers

chapter 26 windows services

introducing windows services

building a windows service

creating an installer for the service

creating the setup project for the windows service

installing the windows service

verifying the service logging

windows service architectire

quick facts on windows services

monitoring the windows service

server components

multi-tiered architecture

com and com+

serviced components

using the component services tool

summary

test questions

test answers



chapter 27 .net remoting

what is .net remoting?

terms and terminology

.net remoing architecture

steps for invoking a server object's methods

using .net remoting

building the remote object

building the remote server

building the client

running the remote application

configuring .net remoting

creating the remote object

creating the remote object configuration file

creating the client

creating the client configuration file

setting up iis to host the server

client-activated objects

managing the lifetime of a server object

final considerations

performance considerations

.net remoting vs. web services

points to remember

summary

test questions

test answers

chapter 28 xml web services

introducing xml web services

distributed applications

xml web services in a nutshell

xml web services architecture

xml web service provider

xml web service consumer

xml web service broker

xml web services programming model

building an xml web service

creating the project

implementing the web methods

setting the web method attributes

the project files



xml web service consumers

wsdl

discovering xml web services

proxies for xml web services

building an xml web service consumer

asynchronous web methods

soap extensions

sununary

test questions

test answers

chapter 29 data again

ado.net and xml web services

the ado objects revisited

datasets

dataset schemas

dataset relationships

xml data

document object model (dom)

xmlreader

transformations and xml

vaiidating xml

microsoft sql server and xml support

summary

test questions

test answers

chapter 30 deployment and security

deploying an xml web service

uddi registry

deployment

securing an xml web service

authentication

authorization

secure commnication

access unmanaged code using interop

using a com component

summary

test questions

test answers

part vi appendixes

appendix a about the cd-rom

appendix b the new microsoft developer tracks

appendix c command-line syntax

appendix d the .net class library

appendix e glossary


已确认勘误

次印刷

页码 勘误内容 提交人 修订印次

MCAD
    • 名称
    • 类型
    • 大小

    光盘服务联系方式: 020-38250260    客服QQ:4006604884

    意见反馈

    14:15

    关闭

    云图客服:

    尊敬的用户,您好!您有任何提议或者建议都可以在此提出来,我们会谦虚地接受任何意见。

    或者您是想咨询:

    用户发送的提问,这种方式就需要有位在线客服来回答用户的问题,这种 就属于对话式的,问题是这种提问是否需要用户登录才能提问

    Video Player
    ×
    Audio Player
    ×
    pdf Player
    ×
    Current View

    看过该图书的还喜欢

    some pictures

    解忧杂货店

    东野圭吾 (作者), 李盈春 (译者)

    亲爱的云图用户,
    光盘内的文件都可以直接点击浏览哦

    无需下载,在线查阅资料!

    loading icon