2014年2月7日星期五

Latest training guide for Microsoft 070-504

In the recent few years, Microsoft 070-504 exam certification have caused great impact to many people. But the key question for the future is that how to pass the Microsoft 070-504 exam more effectively. The answer of this question is to use ITCertKing's Microsoft 070-504 exam training materials, and with it you can pass your exams. So what are you waiting for? Go to buy ITCertKing's Microsoft 070-504 exam training materials please, and with it you can get more things what you want.

Dear candidates, have you thought to participate in any Microsoft 070-504 exam training courses? In fact, you can take steps to pass the certification. ITCertKing Microsoft 070-504 exam training materials bear with a large number of the exam questions you need, which is a good choice. The training materials can help you pass the certification.

If you think you can face unique challenges in your career, you should pass the Microsoft 070-504 exam. ITCertKing is a site that comprehensively understand the Microsoft 070-504 exam. Using our exclusive online Microsoft 070-504 exam questions and answers, will become very easy to pass the exam. ITCertKing guarantee 100% success. ITCertKing is recognized as the leader of a professional certification exam, it provides the most comprehensive certification standard industry training methods. You will find that ITCertKing Microsoft 070-504 exam questions and answers are most thorough and the most accurate questions on the market and up-to-date practice test. When you have ITCertKing Microsoft 070-504 questions and answers, it will allow you to have confidence in passing the exam the first time.

070-504 certification exam is a very import component Microsoft certification exam. But passing Microsoft certification 070-504 exam is not so simple. In order to give to relieve pressure and save time and effort for candidates who take a preparation for the 070-504 certification exam, ITCertKing specially produce a variety of training tools. So you can choose an appropriate quick training from ITCertKing to pass the exam.

In life we mustn't always ask others to give me something, but should think what I can do for others. At work if you can create a lot of value for the boss, the boss of course care about your job, including your salary. The same reason, if we are always a ordinary IT staff, yhen you will be eliminated sooner or later . We should pass the IT exams, and go to the top step by step. ITCertKing's Microsoft 070-504 exam materials can help you to find shortcut to success. There are a lot of IT people who have started to act. Success is in the ITCertKing Microsoft 070-504 exam training materials. Of course you can not miss it.

ITCertKing promise that we will spare no effort to help you pass Microsoft certification 070-504 exam. Now you can free download part of practice questions and answers of Microsoft certification 070-504 exam on ITCertKing. When you select ITCertKing, you can not only pass Microsoft certification 070-504 exam, but also have one year free update service. ITCertKing can also promise if you fail to pass the exam, ITCertKing will 100% refund.

Exam Code: 070-504
Exam Name: Microsoft (TS: Microsoft .NET Framework 3.5 -C Windows Workflow Foundation)
One year free update, No help, Full refund!
Total Q&A: 176 Questions and Answers
Last Update: 2014-02-07

070-504 Free Demo Download: http://www.itcertking.com/070-504_exam.html

NO.1 Question
You are creating a Windows Workflow Foundation custom activity by using Microsoft .NET Framework
3.5.
The custom activity has the following features:
It uses a voting process.
It completes execution after the receipt of a Yes or a No vote from an end user.
The voting process is managed by a local service of type VotingService. The voting process can take 15
to 20 days.
You need to ensure that the VotingService service informs the custom activity when a vote is receiveD.
What should you do?
A. Implement the VotingService service to invoke a method in the custom activity and pass the voting data
as a workflow parameter.
B. Implement the VotingService service to schedule the custom activity to execute and pass the voting
data as a workflow parameter.
C. Implement the VotingService service to enqueue the voting data in a workflow queue that was
configured by the custom activity.
D. Create a dependency property in the custom activity for the voting data. Implement the VotingService
service to configure the dependency property when data is received.
Answer: C

Microsoft   070-504   070-504   070-504

NO.2 Question
A custom activity defined in an assembly named LitwareActivities is defined as follows:
Namespace LitwareActivities
Public Class WriteLineActivity
Inherits Activity
Protected Overrides Function Execute(ByVal executionContext As
System.Workflow.ComponentModel.ActivityExecutionContext) _ As
System.Workflow.ComponentModel.ActivityExecutionStatus
Console.WriteLine(Message)
Return ActivityExecutionStatus.Closed
End Function
Private aMessage As String
Public Property Message() As String
Get
Return aMessage
End Get
Set(ByVal value As String)
aMessage = value
End Set
End Property
End Class
End Namespace
You need to create a sequential workflow where the execution path can be generated on the fly by an
application.
Which XML code segment should you use?
A. <SequentialWorkflowActivity
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Litware="clr-namespace:LitwareActivities;assembly=LitwareActivities">
<Litware:WriteLineActivity Message="Hello, WF"/>
</SequentialWorkflowActivity>
B. <Workflow
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Litware="clr-namespace:LitwareActivities;assembly=LitwareActivities">
<Litware:WriteLineActivity Message="Hello, WF"/>
</Workflow>
C. <Workflow
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
class:Litware="clr-namespace:LitwareActivities;assembly=LitwareActivities">
<Litware:WriteLineActivity Message="Hello, WF"/>
</Workflow>
D. <SequentialWorkflowActivity
class:Litware="clr-namespace:LitwareActivities;assembly=LitwareActivities">
<Litware:WriteLineActivity Message="Hello, WF"/>
</SequentialWorkflowActivity>
Answer: A

Microsoft   070-504   070-504

NO.3 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5. You use
the state machine workflow in the application.
You plan to implement a mechanism that allows a host application to query a state machine workflow
instance that is currently executing.
You write the following code segment. (Line numbers are included for reference only.)
01 WorkflowRuntime runtime = new WorkflowRuntime();
02 WorkflowInstance instance =
03 ?runtime.CreateWorkflow(typeof(Workflow1));
04 instance.Start();
05
You need to identify the current state of the workflow.
Which code segment should you insert at line 05?
A. string currentstate =
?instance.GetWorkflowDefinition().ToString();
B. string currentstate =
?instance.GetWorkflowDefinition().ExecutionStatus.ToString();
C. StateMachineWorkflowInstance smwi =
?new StateMachineWorkflowInstance(runtime, instance.InstanceId);
string currentstate = smwi.StateHistory[0];
D. StateMachineWorkflowInstance smwi =
?new StateMachineWorkflowInstance(runtime, instance.InstanceId);
string currentstate = smwi.CurrentStateName;
Answer: D

Microsoft exam prep   070-504 original questions   070-504 questions

NO.4 Question
You use a built-in tracking service to track specific workflow parameters.
You need to check whether the workflow parameters have been stored in the tracking database.
What should you do? (Each correct answer presents part of a solution. Choose two.)
A. Display the contents of the WorkflowInstance table of the tracking database.
B. Include the SqlTrackingQuery class in a code segment to retrieve tracked workflows and
SqlTrackingWorkflowInstance class to inspect them.
C. Use the ActivityTrackingLocation class to determine if the value has been set to a database.
D. Display the contents of the TrackingDataItem table of the tracking database.
Answer: B AND D

Microsoft   070-504   070-504 questions   070-504 exam prep   070-504 test answers

NO.5 Question
You create an application in which users design simple sequential workflows. The designs are stored as
XOML in a SQL database. You need to start one of these sequential workflows from within your own
workflow.
What should you do?
A. Include a custom activity with a code segment that includes an invocation to the CreateWorkflow
method of the WorkflowRuntime class and then starts the workflow. The signature of the CreateWorkflow
method invoked uses only the workflowType parameter.
B. Include a custom activity with a code segment that includes an invocation to the CreateWorkflow
method of WorkflowRuntime class and then starts the workflow. The signature of the CreateWorkflow
method invoked uses only the XmlReader and workflowDefinitionReader parameters.
C. Include a custom activity with a code segment that includes an invocation to the CreateWorkflow
method of the WorkflowRuntime class and then starts the workflow. The signature of the CreateWorkflow
method invoked uses only the workflowType, Dictionary<string,Object> namedArgumentValues, and Guid
instanceId parameters.
D. Include and configure an InvokeWorkflow activity
Answer: B

Microsoft exam simulations   070-504 test questions   070-504 exam dumps   070-504 demo   070-504 demo

NO.6 Question
You are writing a sequential console workflow that consists of a delay activity and a code activity, as
shown in the exhibit. (Click the Exhibit button for the sequential console workflow image.)
In the execution code of the second activity, you try to modify the workflow as follows:
Private Sub delayActivity_InitializeTimeoutDuration(ByVal sender As System.Object, ByVal e As
System.EventArgs)
Console.Title = "Modifiability of a Workflow"
Console.WriteLine("Wait ...")
End Sub
Private Sub codeActivity_ExecuteCode(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim delay As DelayActivity = CType(sender, DelayActivity)
Console.WriteLine(delay.Name)
Dim workflowChanges As New WorkflowChanges(Me)
Dim codeActivity As New CodeActivity()
codeActivity.Name = "codeActivity2"
AddHandler codeActivity.ExecuteCode, AddressOf Me.codeActivity2_ExecuteCode
workflowChanges.TransientWorkflow.Activities.Add(codeActivity)
Me.ApplyWorkflowChanges(workflowChanges)
End Sub
Private Sub codeActivity2_ExecuteCode(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim codeActivity As CodeActivity = CType(sender, CodeActivity)
Console.WriteLine(codeActivity.Name)
Console.ReadLine()
End Sub
You also have set the modifiability of the workflow to a code condition that is set to the following function:
Private Sub UpdateCondition(ByVal sender As System.Object, ByVal e As ConditionalEventArgs)
If (TimeSpan.Compare(Me.delayActivity.TimeoutDuration, New TimeSpan(0, 0, 5)) > 0) Then
e.Result = False
Else
e.Result = True
End If
End Sub
Which code segment should you use to handle the exception?
A. workflowChanges.TransientWorkflow.Activities.Add(codeActivity)
Try
Me.ApplyWorkflowChanges(workflowChanges)
Catch ex As ArgumentOutOfRangeException
Console.WriteLine(ex.GetType().ToString())
Console.ReadLine()
End Try
B. workflowChanges.TransientWorkflow.Activities.Add(codeActivity)
Try
Me.ApplyWorkflowChanges(workflowChanges)
Catch ex As InvalidProgramException
Console.WriteLine(ex.GetType().ToString())
Console.ReadLine()
End Try
C. workflowChanges.TransientWorkflow.Activities.Add(codeActivity)
Try
Me.ApplyWorkflowChanges(workflowChanges)
Catch ex As InvalidOperationException
Console.WriteLine(ex.GetType().ToString())
Console.ReadLine()
End Try
D. workflowChanges.TransientWorkflow.Activities.Add(codeActivity)
Try
Me.ApplyWorkflowChanges(workflowChanges)
Catch ex As OverflowException
Console.WriteLine(ex.GetType().ToString())
Console.ReadLine()
End Try
Answer: C

Microsoft   070-504   070-504

NO.7 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5. The
application contains a state workflow.
You write the following code segment.
WorkflowRuntime runtime = new WorkflowRuntime();
WorkflowInstance instance = runtime.CreateWorkflow(
?typeof(DynamicUpdateWorkflow));
instance.Start();
StateMachineWorkflowInstance smwi =
?new StateMachineWorkflowInstance(runtime,
?instance.InstanceId);
A dependency property named Status is defined in this workflow.
The value of a variable named amount is used to set the state of the workflow.
You need to ensure that the host application changes the state of the workflow on the basis of the value of
the amount variable.
What are the two possible code segments that you can use to achieve this goal? (Each correct answer
presents a complete solution. Choose two.)
A. if (amount >= 1000)
?smwi.SetState("HighValueState");
else
?smwi.SetState("LowValueState");
B. if (amount >= 1000)
?smwi.StateMachineWorkflow.SetValue
?(DynamicUpdateWorkflow.StatusProperty,"HighValueState")
else
?smwi.StateMachineWorkflow.SetValue
?(DynamicUpdateWorkflow.StatusProperty, "LowValueState");
C. if (amount >= 1000)
?instance.GetWorkflowDefinition().SetValue
?(DynamicUpdateWorkflow.StatusProperty,"HighValueState");
else
?instance.GetWorkflowDefinition().SetValue
?(DynamicUpdateWorkflow.StatusProperty,"LowValueState");
D. if (amount >= 1000)
{
??StateActivity high = (StateActivity)
???smwi.StateMachineWorkflow.Activities["HighValueState"];
??smwi.SetState(high);
}
else
{
??StateActivity low = (StateActivity)
???smwi.StateMachineWorkflow.Activities["LowValueState"];
??smwi.SetState(low);
}
Answer: A AND D

Microsoft   070-504 demo   070-504 braindump   070-504 questions   070-504 test questions

NO.8 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5.
A Windows Forms application functions as the workflow host by using the
DefaultWorkflowSchedulerService.
You create a WorkflowRuntime instance in the Load event of the forms. You also subscribe to the
WorkflowCompleted event.
You need to ensure that the application displays the message in the Label control named lblStatus when
the WorkflowCompleted event is raised.
Which code segment should you use?
A. Private Sub UpdateInstances(ByVal id As Guid)
??If Me.InvokeRequired Then
????lblStatus.Text = id.ToString & " completed"
??End If
End Sub
B. Private Sub UpdateInstances(ByVal id As Guid)
??If (Not Me.InvokeRequired) Then
????lblStatus.Text = id.ToString & " completed"
??End If
End Sub
C. Private Delegate Sub UpdateInstancesDelegate(ByVal id As Guid)
Private Sub UpdateInstances(ByVal id As Guid)
??If Me.InvokeRequired Then
????Me.Invoke(New _
?????UpdateInstancesDelegate(AddressOf UpdateInstances), _
?????New Object() {id})
??Else
????lblStatus.Text = id.ToString & " completed"
??End If
End Sub
D. Private Delegate Sub UpdateInstancesDelegate(ByVal id As Guid)
Private Sub UpdateInstances(ByVal id As Guid)
??If Not Me.InvokeRequired Then
????Me.Invoke(New _
????UpdateInstancesDelegate(AddressOf UpdateInstances), _
????New Object() {id})
??Else
????lblStatus.Text = id.ToString & " completed"
??End If
End Sub
Answer: C

Microsoft   070-504 test questions   070-504   070-504 answers real questions   070-504 demo

NO.9 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5. The
application uses a sequential workflow.
The host application creates a workflow instance and stores it in a variable named instance. When the
workflow is executed, a business requirement requires the workflow execution to pause for a few minutes.
The host uses the following code segment.
Dim runtime As New WorkflowRuntime()
Dim instance As WorkflowInstance = _
?runtime.CreateWorkflow(GetType(MyWorkflow))
instance.Start()
You need to ensure that the following requirements are met:
The workflow execution is temporarily pauseD. The workflow state is preserved in memory.
Which line of code should you use?
A. instance.Unload()
B. instance.TryUnload()
C. instance.Suspend(Nothing)
D. instance.Terminate(Nothing)
Answer: C

Microsoft   070-504   070-504   070-504

NO.10 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5.
The application uses a markup-only workflow.
The workflow will also require the use of a code-beside file.
The following code fragment is implemented in XAML.
<SequentialWorkflowActivity
x:Class="ProcessNewCustomer" Name="ProcessCustomer" xmlns=
"http://schemas.microsoft.com/winfx/2006/xaml/workflow"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
</SequentialWorkflowActivity>
You need to create a class declaration to implement the custom code.
Which code segment should you use?
A. public partial class ProcessNewCustomer
? : SequentialWorkflowActivity
{
??// Class implementation code appears here.
}
B. public class ProcessNewCustomer
? : SequentialWorkflowActivity
{
??// Class implementation code appears here.
}
C. public class ProcessNewCustomerCode
? : ProcessNewCustomer
{
??// Class implementation code appears here.
}
D. public partial class ProcessCustomer
? : SequentialWorkflowActivity
{
??// Class implementation code appears here.
}
Answer: A

Microsoft exam dumps   070-504   070-504 test questions

NO.11 Question
You create a workflow host application by using Microsoft .NET Framework 3.5. You use Windows
Workflow Foundation to create the application.
You need to configure the workflow runtime to ensure that all the workflow instances run asynchronously.
Which code segment should you use?
A. Dim runtime As New WorkflowRuntime()
runtime.StartRuntime()
Dim instance As WorkflowInstance = _
?runtime.CreateWorkflow(GetType(CustomerWorkflow))
instance.Start()
B. Dim runtime As New WorkflowRuntime()
runtime.StartRuntime()
Dim scheduler As ManualWorkflowSchedulerService = _
?runtime.GetService(Of ManualWorkflowSchedulerService)()
Dim instance As WorkflowInstance = _
?runtime.CreateWorkflow(GetType(CustomerWorkflow))
scheduler.RunWorkflow(instance.InstanceId)
C. Dim runtime As New WorkflowRuntime()
Dim scheduler As New ManualWorkflowSchedulerService()
runtime.AddService(scheduler)
runtime.StartRuntime()
Dim instance As WorkflowInstance = _
?runtime.CreateWorkflow(GetType(CustomerWorkflow))
instance.Start()
D. Dim runtime As New WorkflowRuntime()
runtime.StartRuntime()
Dim scheduler As New DefaultWorkflowSchedulerService()
runtime.AddService(scheduler)
Dim instance As WorkflowInstance = _
?runtime.CreateWorkflow(GetType(CustomerWorkflow))
instance.Start()
Answer: A

Microsoft certification   070-504 exam simulations   070-504 answers real questions   070-504   070-504 study guide

NO.12 Question
A custom activity defined in an assembly named LitwareActivities is defined as follows:
namespace LitwareActivities
{
public class WriteLineActivity : Activity
{
protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext)
{
Console.WriteLine(Message);
return ActivityExecutionStatus.Closed;
}
private string _message;
public string Message
{
get { return _message; }
set { _message = value; }
}
...
}
}
You need to create a sequential workflow where the execution path can be generated on the fly by an
application.
Which XML code segment should you use?
A. <SequentialWorkflowActivity
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Litware="clr-namespace:LitwareActivities;assembly=LitwareActivities">
<Litware:WriteLineActivity Message="Hello, WF"/>
</SequentialWorkflowActivity>
B. <Workflow
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Litware="clr-namespace:LitwareActivities;assembly=LitwareActivities">
<Litware:WriteLineActivity Message="Hello, WF"/>
</Workflow>
C. <Workflow
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
class:Litware="clr-namespace:LitwareActivities;assembly=LitwareActivities">
<Litware:WriteLineActivity Message="Hello, WF"/>
</Workflow>
D. <SequentialWorkflowActivity
class:Litware="clr-namespace:LitwareActivities;assembly=LitwareActivities">
<Litware:WriteLineActivity Message="Hello, WF"/>
</SequentialWorkflowActivity>
Answer: A

Microsoft   070-504 practice test   070-504   070-504   070-504

NO.13 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5.
The application uses a markup-only workflow.
The workflow will also require the use of a code-beside file.
The following code fragment is implemented in XAML.
<SequentialWorkflowActivity
x:Class="ProcessNewCustomer" Name="ProcessCustomer" xmlns=
"http://schemas.microsoft.com/winfx/2006/xaml/workflow"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
</SequentialWorkflowActivity>
You need to create a class declaration to implement the custom code.
Which code segment should you use?
A. Partial Public Class ProcessNewCustomer
??Inherits SequentialWorkflowActivity
??' Class implementation code appears here.
End Class
B. Public Class ProcessNewCustomer
??Inherits SequentialWorkflowActivity
??' Class implementation code appears here.
End Class
C. Public Class ProcessNewCustomerCode
??Inherits ProcessNewCustomer
??' Class implementation code appears here.
End Class
D. Partial Public Class ProcessCustomer
??Inherits SequentialWorkflowActivity
??' Class implementation code appears here.
End Class
Answer: A

Microsoft   070-504 test   070-504 pdf

NO.14 Question
You are creating a Windows Workflow Foundation custom activity by using Microsoft .NET Framework
3.5.
You need to ensure that the following requirements are met:
The custom activity communicates with a local service hosted in the workflow runtime.
The local service receives data from the custom activity.
What should you do?
A. Define a method for the local service. Use the custom activity to invoke the method and pass data as a
method parameter.
B. Define a new event for the custom activity. Use the local service to subscribe to the event and receive
the data in the event arguments.
C. Place the data in the UserData property of the custom activity. Use the local service to read the data
directly from the UserData property.
D. Create and configure a workflow queue when the custom activity initializes. Use the custom activity to
write data to the workflow queue. Use the local service to read data from the workflow queue when the
data arrives.
Answer: A

Microsoft pdf   070-504 certification training   070-504 exam prep   070-504 certification training   070-504

NO.15 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5.
The application is exposed as a Web service. You use WebServiceInputActivity activities in your workflow.
You need to ensure that the following requirements are met:
All exceptions are caught at runtime.
The exceptions are thrown as SOAP exceptions back to the client application without changing the course
of the workflow.
What should you do?
A. Add the ThrowActivity activity after the WebServiceInputActivity activity.
B. Add the ThrowActivity activity before the WebServiceInputActivity activity.
C. Add the WebServiceFaultActivity activity after the WebServiceInputActivity activity.
D. Add the WebServiceFaultActivity activity before the WebServiceInputActivity activity.
Answer: C

Microsoft test   070-504   070-504   070-504   070-504

NO.16 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5. The
application uses a sequential workflow.
The host application creates a workflow instance and stores it in a variable named instance. When the
workflow is executed, a business requirement requires the workflow execution to pause for a few minutes.
The host uses the following code segment.
WorkflowRuntime runtime = new WorkflowRuntime();
WorkflowInstance instance =
?runtime.CreateWorkflow( typeof(Workflow1));
instance.Start();
You need to ensure that the following requirements are met:
The workflow execution is temporarily pauseD. The workflow state is preserved in memory.
Which line of code should you use?
A. instance.Unload();
B. instance.TryUnload();
C. instance.Suspend(null);
D. instance.Terminate(null);
Answer: C

Microsoft   070-504   070-504 braindump   070-504 answers real questions   070-504

NO.17 You are writing a sequential console workflow that consists of a delay activity and a code activity, as
shown in the exhibit. (Click the Exhibit button for the sequential console workflow image)
In the execution code of the second activity, you try to modify the workflow as follows:
private void codeActivity_ExecuteCode(object sender, EventArgs e)
{
CodeActivity delay = sender as CodeActivity;
Console.WriteLine(delay.Name);
WorkflowChanges workflowChanges = new WorkflowChanges(this);
CodeActivity codeActivity = new CodeActivity();
codeActivity.Name = "codeActivity2";
codeActivity.ExecuteCode += new EventHandler(codeActivity2_ExecuteCode);
workflowChanges.TransientWorkflow.Activities.Add(codeActivity);
this.ApplyWorkflowChanges(workflowChanges);
}
private void codeActivity2_ExecuteCode(object sender, EventArgs e)
{
CodeActivity codeActivity = sender as CodeActivity;
Console.WriteLine(codeActivity.Name);
Console.ReadLine();
}
You also have set the modifiability of the workflow to a code condition that is set to the following function:
private void UpdateCondition(object sender, ConditionalEventArgs e)
{
if (TimeSpan.Compare(this.delayActivity.TimeoutDuration, new TimeSpan(0, 0, 5)) > 0) {
e.Result = false;
}
else {
e.Result = true;
}
}
Which code segment should you use to handle the exception?
A. workflowChanges.TransientWorkflow.Activities.Add(codeActivity);
try {
this.ApplyWorkflowChanges(workflowChanges);
}
catch (ArgumentOutOfRangeException ex) {
Console.WriteLine(ex.GetType().ToString());
Console.ReadLine();
}
B. workflowChanges.TransientWorkflow.Activities.Add(codeActivity);
try {
this.ApplyWorkflowChanges(workflowChanges);
}
catch (InvalidProgramException ex) {
Console.WriteLine(ex.GetType().ToString());
Console.ReadLine();
}
C. workflowChanges.TransientWorkflow.Activities.Add(codeActivity);
try {
this.ApplyWorkflowChanges(workflowChanges);
}
catch (InvalidOperationException ex) {
Console.WriteLine(ex.GetType().ToString());
Console.ReadLine();
}
D. workflowChanges.TransientWorkflow.Activities.Add(codeActivity);
try {
this.ApplyWorkflowChanges(workflowChanges);
}
catch (OverflowException ex) {
Console.WriteLine(ex.GetType().ToString());
Console.ReadLine();
}
Answer: C

Microsoft demo   070-504 test   070-504

NO.18 Question
You are creating a Windows Workflow Foundation custom activity by using Microsoft .NET Framework
3.5.
The workflow has an event-based activity that waits for an item to arrive in a workflow queue.
You need to ensure that the workflow queue is available for local services before the custom activity is
executed.
What should you do?
A. Provide a default constructor for the custom activity. Create and register the queue in the
implementation of the constructor.
B. Override the Initialize method. Create and register the queue in the implementation of the Initialize
method.
C. Override the InitializeProperties method. Create and register the queue in the implementation of the
InitializeProperties method.
D. Override the OnWorkflowChangesCompleted method. Create and register the queue in the
implementation of the OnWorkflowChangesCompleted method.
Answer: B

Microsoft questions   070-504   070-504

NO.19 Question
You create a Windows Workflow Foundation application by using Microsoft .NET Framework 3.5.
A Windows Forms application functions as the workflow host by using the
DefaultWorkflowSchedulerService.
You create a WorkflowRuntime instance in the Load event of the forms. You also subscribe to the
WorkflowCompleted event.
You need to ensure that the application displays the message in the Label control named lblStatus when
the WorkflowCompleted event is raised.
Which code segment should you use?
A. private void UpdateInstances(Guid id) {
??if (this.InvokeRequired) {
????lblStatus.Text = id + " completed";
??}
}
B. private void UpdateInstances(Guid id) {
??if (!this.InvokeRequired) {
????lblStatus.Text = id + " completed";
??}
}
C. delegate void UpdateInstancesDelegate(Guid id);
private void UpdateInstances(Guid id) {
??if (this.InvokeRequired) {
????this.Invoke(
?????new UpdateInstancesDelegate(UpdateInstances),
?????new object[] { id });
??} else {
????lblStatus.Text = id + " completed";
??}
}
D. delegate void UpdateInstancesDelegate(Guid id);
private void UpdateInstances(Guid id) {
??if (!this.InvokeRequired) {
????this.Invoke(
?????new UpdateInstancesDelegate(UpdateInstances),
?????new object[] { id });
??} else {
????lblStatus.Text = id + " completed";
??}
}
Answer: C

Microsoft   070-504 demo   070-504

NO.20 Question
You create a workflow host application by using Microsoft .NET Framework 3.5. You use Windows
Workflow Foundation to create the application.
You need to configure the workflow runtime to ensure that all the workflow instances run asynchronously.
Which code segment should you use?
A. WorkflowRuntime runtime = new WorkflowRuntime();
runtime.StartRuntime();
WorkflowInstance instance =
?runtime.CreateWorkflow(typeof(CustomerWorkflow));
instance.Start();
B. WorkflowRuntime runtime = new WorkflowRuntime();
runtime.StartRuntime();
ManualWorkflowSchedulerService scheduler =
?runtime.GetService<ManualWorkflowSchedulerService>();
WorkflowInstance instance =
?runtime.CreateWorkflow(typeof(CustomerWorkflow));
scheduler.RunWorkflow(instance.InstanceId);
C. WorkflowRuntime runtime = new WorkflowRuntime();
ManualWorkflowSchedulerService scheduler =
?new ManualWorkflowSchedulerService();
runtime.AddService(scheduler);
runtime.StartRuntime();
WorkflowInstance instance =
?runtime.CreateWorkflow(typeof(CustomerWorkflow));
instance.Start();
D. WorkflowRuntime runtime = new WorkflowRuntime();
runtime.StartRuntime();
DefaultWorkflowSchedulerService scheduler =
?new DefaultWorkflowSchedulerService();
runtime.AddService(scheduler);
WorkflowInstance instance =
?runtime.CreateWorkflow(typeof(CustomerWorkflow));
instance.Start();
Answer: A

Microsoft demo   070-504 certification training   070-504   070-504 certification training

ITCertKing offer the latest HP5-K01D exam material and high-quality CAT-221 pdf questions & answers. Our MB7-702 VCE testing engine and C4060-155 study guide can help you pass the real exam. High-quality 70-482 dumps training materials can 100% guarantee you pass the exam faster and easier. Pass the exam to obtain certification is so simple.

Article Link: http://www.itcertking.com/070-504_exam.html

没有评论:

发表评论