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