1 type derived from CorrelationDataDescription
System.ServiceModel (1)
System\ServiceModel\Channels\ContextBindingElement.cs (1)
360
class ContextExchangeCorrelationDataDescription :
CorrelationDataDescription
17 references to CorrelationDataDescription
System.ServiceModel (13)
System\ServiceModel\Channels\ContextBindingElement.cs (1)
375
new
CorrelationDataDescription
[] { new ContextExchangeCorrelationDataDescription() });
System\ServiceModel\Channels\CorrelationDataSourceHelper.cs (11)
12
ICollection<
CorrelationDataDescription
> dataSources;
14
public CorrelationDataSourceHelper(ICollection<
CorrelationDataDescription
> dataSources)
22
this.dataSources = new ReadOnlyCollection<
CorrelationDataDescription
>(new List<
CorrelationDataDescription
>(dataSources));
26
CorrelationDataSourceHelper(ICollection<
CorrelationDataDescription
> dataSource1, ICollection<
CorrelationDataDescription
> dataSource2)
28
List<
CorrelationDataDescription
> newData = new List<
CorrelationDataDescription
>(dataSource1);
30
foreach (
CorrelationDataDescription
correlationData in dataSource2)
35
this.dataSources = new ReadOnlyCollection<
CorrelationDataDescription
>(newData);
53
ICollection<
CorrelationDataDescription
> ICorrelationDataSource.DataSources
System\ServiceModel\Channels\ICorrelationDataSource.cs (1)
11
ICollection<
CorrelationDataDescription
> DataSources
System.ServiceModel.Activities (4)
System\ServiceModel\Activities\Description\CorrelationQueryBehavior.cs (4)
150
foreach (
CorrelationDataDescription
data in source.DataSources)
168
foreach (
CorrelationDataDescription
data in source.DataSources)
269
foreach (
CorrelationDataDescription
data in source.DataSources)
312
static CorrelationQuery CreateDefaultCorrelationQuery(CorrelationQuery query, string action,
CorrelationDataDescription
data, ref bool shouldPreserveMessage)