PermissionSet.FromXml(SecurityElement) メソッド

定義

XML エンコードから指定された状態で、セキュリティ オブジェクトを再構築します。

public:
 virtual void FromXml(System::Security::SecurityElement ^ et);
public virtual void FromXml (System.Security.SecurityElement et);
abstract member FromXml : System.Security.SecurityElement -> unit
override this.FromXml : System.Security.SecurityElement -> unit
Public Overridable Sub FromXml (et As SecurityElement)

パラメーター

et
SecurityElement

セキュリティ オブジェクトの再構築に使用する XML エンコード。

実装

例外

et パラメーターが null です。

et パラメーターが有効なアクセス許可要素ではありません。

- または -

et パラメーターのバージョン番号がサポートされていません。

次のコード例は、 メソッドの使用方法を FromXml 示しています。 このコード例は、PermissionSet クラスのために提供されている大規模な例の一部です。

// Display result of ToXml and FromXml operations.
PermissionSet^ ps6 = gcnew PermissionSet( PermissionState::None );
ps6->FromXml( ps5->ToXml() );
Console::WriteLine( "Result of ToFromXml = {0}\n", ps6 );
// Display result of ToXml and FromXml operations.
PermissionSet ps6 = new PermissionSet(PermissionState.None);
ps6.FromXml(ps5.ToXml());
Console.WriteLine("Result of ToFromXml = " + ps6.ToString() + "\n");
' Display result of ToXml and FromXml operations.
Dim ps6 As New PermissionSet(PermissionState.None)
ps6.FromXml(ps5.ToXml())
Console.WriteLine("Result of ToFromXml = " & ps6.ToString() & ControlChars.Lf)

適用対象