本文整理汇总了C#中DigitalPlatform.rms.Client.RmsChannel.GetBrowseRecords方法的典型用法代码示例。如果您正苦于以下问题:C# RmsChannel.GetBrowseRecords方法的具体用法?C# RmsChannel.GetBrowseRecords怎么用?C# RmsChannel.GetBrowseRecords使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DigitalPlatform.rms.Client.RmsChannel
的用法示例。
在下文中一共展示了RmsChannel.GetBrowseRecords方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetBrowseRecord
/// <summary>
/// 获取浏览记录
/// </summary>
/// <param name="strServerUrl"></param>
/// <param name="paths"></param>
/// <param name="strStyle"></param>
/// <param name="records"></param>
/// <param name="strError"></param>
/// <returns></returns>
public int GetBrowseRecord(
string strServerUrl,
string [] paths,
string strStyle,
out ArrayList records,
out string strError)
{
strError = "";
records = null;
if (String.IsNullOrEmpty(strServerUrl) == true)
strServerUrl = this.ServerUrl;
RmsChannel channelSave = channel;
channel = Channels.GetChannel(strServerUrl);
if (channel == null)
{
strError = "get channel error";
return -1;
}
try
{
// 根据制定的记录路径获得浏览格式记录
// parameter:
// aRecord 返回的浏览记录信息。一个ArrayList数组。每个元素为一个string[],所包含的内容
// 根据strStyle而定。如果strStyle中有id,则aRecord每个元素中的string[]第一个字符串就是id,后面是各列内容。
return channel.GetBrowseRecords(paths,
strStyle,
out records,
out strError);
}
finally
{
channel = channelSave;
}
}