1

我正在尝试以编程方式将任务添加到队列中。我找到了这个示例代码: http: //msdn.microsoft.com/en-us/library/gg328106.aspx,但它只是创建队列而不是使用现有的队列。有没有一种简单的方法可以找到队列的 id?

4

1 回答 1

3

我想到了。我发现可以使用 Advanced Find 工具生成 FetchXML。使用它,我能够查询我的队列,然后获取 ID。

这是我最终使用的:

string fetchXml = @"<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='false'>
                      <entity name='queue'>
                        <attribute name='name' />
                        <attribute name='emailaddress' />
                        <attribute name='queueid' />
                        <order attribute='name' descending='false' />
                        <filter type='and'>
                          <condition attribute='name' operator='eq' value='{0}' />
                        </filter>
                      </entity>
                    </fetch>";    

EntityCollection result = service.RetrieveMultiple(new FetchExpression(String.format(fetchXml, queueName)));
var myQueue = (Queue)result.Entities[0];
Console.WriteLine(myQueye.Id);
于 2012-09-18T02:38:31.080 回答