7

このブログを使用して、いくつかのカスタムメッセージエンコーダーを変更しようとしています

http://www.falconwebtech.com/post/2010/05/24/WCF-Interoperability-and-Extensibility-Part-Two.aspx

ここで著者は拡張メソッドを使用します

 xmlMessage.Descendants(sec + "Security").First().Add(samlXml);

この .First に使用する名前空間は何ですか?これは私が取得しているエラーです

'System.Collections.Generic.IEnumerable' には 'First' の定義が含まれておらず、タイプ 'System.Collections.Generic.IEnumerable' の最初の引数を受け入れる拡張メソッド 'First' が見つかりませんでした (using ディレクティブがありませんか?またはアセンブリ参照?)

次の名前空間が含まれています

using System;
using System.IO;
using System.Security.Cryptography;
using System.ServiceModel.Channels;
using System.Text;
using System.Xml;
using System.Xml.Linq;
using System.Reflection;
using System.Collections.Generic;
using System.Xml.XPath;
using System.Security.Cryptography.Xml;
using System.Security.Cryptography.X509Certificates;
using Microsoft.Web.Services3.Security;
using System.ServiceModel.Security;
using System.IdentityModel.Tokens;

私は自分の研究を行うことができたかもしれませんが、私は簡単な方法を取っています

ありがとうございました

4

1 に答える 1

24

System.Linqあなたが求めているのはあなたです。

http://msdn.microsoft.com/en-us/library/system.linq.enumerable.first.aspx

于 2013-06-29T23:54:11.630 に答える