added samples
[windows-sources.git] / sdk / samples / WFSamples / Applications / OrderingStateMachine / VB / OrderWorkflows / SampleWorkflow.vb
blob9d8411a7526669a6664c757774964f13ad957289
1 '---------------------------------------------------------------------
2 ' This file is part of the Windows Workflow Foundation SDK Code Samples.
3 '
4 ' Copyright (C) Microsoft Corporation. All rights reserved.
5 '
6 'This source code is intended only as a supplement to Microsoft
7 'Development Tools and/or on-line documentation. See these other
8 'materials for detailed information regarding Microsoft code samples.
9 '
10 'THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
11 'KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
12 'IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
13 'PARTICULAR PURPOSE.
14 '---------------------------------------------------------------------
16 Imports System.Workflow.Activities
18 Public Class SampleWorkflow
19 Inherits StateMachineWorkflowActivity
20 Private orderSenderValue As System.Object = New System.Object
22 Public Property OrderSender() As System.Object
23 Get
24 Return orderSenderValue
25 End Get
26 Set(ByVal value As System.Object)
27 orderSenderValue = value
28 End Set
29 End Property
30 End Class