13 lines
419 B
C#
13 lines
419 B
C#
//----------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//----------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Dispatcher
|
|
{
|
|
static class WellKnownContextProperties
|
|
{
|
|
public const string ConversationId = "conversationId";
|
|
public const string InstanceId = "instanceId";
|
|
}
|
|
}
|