1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4 
5 namespace System.ServiceModel.Activities
6 {
7     using System;
8     using System.Activities;
9     using System.ServiceModel.Channels;
10 
11     static class Constants
12     {
13         public const string CorrelatesWith = "CorrelatesWith";
14         public const string EndpointAddress = "EndpointAddress";
15         public const string Message = "Message";
16         public const string Parameter = "Parameter";
17         public const string RequestMessage = "RequestMessage";
18         public const string Result = "Result";
19         public const string TransactionHandle = "TransactionHandle";
20         public const string NoPersistHandle = "noPersistHandle";
21 
22         public static readonly Type MessageType = typeof(Message);
23         public static readonly Type CorrelationHandleType = typeof(CorrelationHandle);
24         public static readonly Type UriType = typeof(Uri);
25         public static readonly Type NoPersistHandleType = typeof(NoPersistHandle);
26 
27         public static readonly object[] EmptyArray = new object[0];
28         public static readonly string[] EmptyStringArray = new string[0];
29         public static readonly Type[] EmptyTypeArray = new Type[0];
30     }
31 }
32