General .Net Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

in .net a WebServvice attribute is used for what

A

Used to add additional information to an XML Web service,

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

in .net a WebServiceBinding accomplishes what

A

Declares a binding that defines one or more XML Web service methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In .net what is the ConformsTo property

A

Gets or sets the Web Services Interoperability (WSI) specification to which the binding claims to conform

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

in .net how can you read a forward only data stream from sql

A

SqlDataReader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

in .net what does SqlHelper accomplish

A

is intended to consolidate mundane, repetitive code that is written time and time again in data access layer components of ADO.NET applications, like this:

using Microsoft.ApplicationBlocks.Data;
SqlHelper.ExecuteNonQuery(connection,”INSERT_PERSON”,
new SqlParameter(“@Name”,txtName.Text),
new SqlParameter(“@Age”,txtAge.Text));

How well did you know this?
1
Not at all
2
3
4
5
Perfectly