本文整理汇总了C#中System.Runtime.Remoting.Activation.RemotingXmlConfigFileData.AddRemoteAppEntry方法的典型用法代码示例。如果您正苦于以下问题:C# RemotingXmlConfigFileData.AddRemoteAppEntry方法的具体用法?C# RemotingXmlConfigFileData.AddRemoteAppEntry怎么用?C# RemotingXmlConfigFileData.AddRemoteAppEntry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Runtime.Remoting.Activation.RemotingXmlConfigFileData
的用法示例。
在下文中一共展示了RemotingXmlConfigFileData.AddRemoteAppEntry方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessClientNode
} // ProcessServiceNode
// appears under "application"
private static void ProcessClientNode(ConfigNode node, RemotingXmlConfigFileData configData)
{
String remoteAppUri = null;
// process attributes
foreach (DictionaryEntry entry in node.Attributes)
{
String key = entry.Key.ToString();
switch (key)
{
case "url": remoteAppUri = (String)entry.Value; break;
case "displayName": break; // displayName is ignored (used by config utility for labelling the application)
default: break;
} // switch
} // foreach attribute
RemotingXmlConfigFileData.RemoteAppEntry remoteApp =
configData.AddRemoteAppEntry(remoteAppUri);
// process child nodes
foreach (ConfigNode childNode in node.Children)
{
switch (childNode.Name)
{
case "wellknown": ProcessClientWellKnownNode(childNode, configData, remoteApp); break;
case "activated": ProcessClientActivatedNode(childNode, configData, remoteApp); break;
default: break;
} // switch
} // foreach child node
// if there are any activated entries, we require a remote app url.
if ((remoteApp.ActivatedObjects.Count > 0) && (remoteAppUri == null))
ReportMissingAttributeError(node, "url", configData);
} // ProcessClientNode
示例2: ProcessClientNode
private static void ProcessClientNode(ConfigNode node, RemotingXmlConfigFileData configData)
{
string appUri = null;
foreach (DictionaryEntry entry in node.Attributes)
{
string str3 = entry.Key.ToString();
if (str3 != null)
{
if (!(str3 == "url"))
{
if (str3 == "displayName")
{
}
}
else
{
appUri = (string) entry.Value;
}
}
}
RemotingXmlConfigFileData.RemoteAppEntry remoteApp = configData.AddRemoteAppEntry(appUri);
foreach (ConfigNode node2 in node.Children)
{
string name = node2.Name;
if (name != null)
{
if (!(name == "wellknown"))
{
if (name == "activated")
{
goto Label_00C5;
}
}
else
{
ProcessClientWellKnownNode(node2, configData, remoteApp);
}
}
continue;
Label_00C5:
ProcessClientActivatedNode(node2, configData, remoteApp);
}
if ((remoteApp.ActivatedObjects.Count > 0) && (appUri == null))
{
ReportMissingAttributeError(node, "url", configData);
}
}
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:47,代码来源:RemotingXmlConfigFileParser.cs