65 references to MonikerHelper
System.ServiceModel (65)
System\ServiceModel\ComIntegration\ComPlusDiagnosticTraceRecords.cs (17)
271
public static void Trace(TraceEventType type, int traceCode, string description, Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable)
295
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Wsdl, out wsdlText);
296
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Contract, out contract);
297
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Address, out address);
298
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Binding, out binding);
299
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.BindingConfiguration, out bindingConfig);
300
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.SpnIdentity, out spnIdentity);
301
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.UpnIdentity, out upnIdentity);
302
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.DnsIdentity, out dnsIdentity);
303
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexAddress, out mexAddress);
304
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexBinding, out mexBinding);
305
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexBindingConfiguration, out mexBindingConfiguration);
306
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexSpnIdentity, out mexSpnIdentity);
307
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexUpnIdentity, out mexUpnIdentity);
308
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexDnsIdentity, out mexDnsIdentity);
309
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.ContractNamespace, out contractNamespace);
310
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.BindingNamespace, out bindingNamespace);
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (17)
31
Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable;
87
internal MexServiceChannelBuilder(Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable)
207
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Contract, out contract);
208
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.ContractNamespace, out contractNamespace);
209
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.BindingNamespace, out bindingNamespace);
210
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Binding, out binding);
211
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexAddress, out mexAddress);
212
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexBinding, out mexBindingSectionName);
213
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexBindingConfiguration, out mexBindingConfiguration);
214
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Address, out address);
215
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.SpnIdentity, out spnIdentity);
216
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.UpnIdentity, out upnIdentity);
217
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.DnsIdentity, out dnsIdentity);
218
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexSpnIdentity, out mexSpnIdentity);
219
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexUpnIdentity, out mexUpnIdentity);
220
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexDnsIdentity, out mexDnsIdentity);
221
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Serializer, out serializer);
System\ServiceModel\ComIntegration\MonikerUtility.cs (5)
13
internal static string Getkeyword(string moniker, out
MonikerHelper
.MonikerAttribute keyword)
28
foreach (
MonikerHelper
.KeywordInfo keywordInfo in
MonikerHelper
.KeywordInfo.KeywordCollection)
128
internal static void Parse(string displayName, ref Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable)
134
MonikerHelper
.MonikerAttribute keyword;
System\ServiceModel\ComIntegration\ProxyBuilder.cs (3)
14
internal static void Build(Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable, ref Guid riid, IntPtr ppv)
23
if (propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Wsdl, out temp))
27
else if (propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.MexAddress, out temp))
System\ServiceModel\ComIntegration\ServiceMoniker.cs (2)
38
PropertyTable = new Dictionary<
MonikerHelper
.MonikerAttribute, string>();
184
private Dictionary<
MonikerHelper
.MonikerAttribute, string> PropertyTable;
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (9)
194
internal void ResolveTypeIfPossible(Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable)
197
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Contract, out typeIID);
219
internal TypedServiceChannelBuilder(Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable)
228
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Address, out address);
229
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Binding, out bindingType);
230
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.BindingConfiguration, out bindingConfigName);
231
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.SpnIdentity, out spnIdentity);
232
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.UpnIdentity, out upnIdentity);
233
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.DnsIdentity, out dnsIdentity);
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (12)
31
Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable;
85
internal WsdlServiceChannelBuilder(Dictionary<
MonikerHelper
.MonikerAttribute, string> propertyTable)
194
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Wsdl, out wsdlText);
195
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Contract, out portType);
196
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Binding, out bindingName);
197
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Address, out address);
198
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.SpnIdentity, out spnIdentity);
199
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.UpnIdentity, out upnIdentity);
200
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.DnsIdentity, out dnsIdentity);
201
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.Serializer, out serializer);
202
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.BindingNamespace, out bindingNamespace);
203
propertyTable.TryGetValue(
MonikerHelper
.MonikerAttribute.ContractNamespace, out contractNamespace);