次の方法で共有


WebPermission.FromXml メソッド

XML エンコーディングから WebPermission を再構築します。

Overrides Public Sub FromXml( _
   ByVal securityElement As SecurityElement _) Implements ISecurityEncodable.FromXml
[C#]
public override void FromXml(SecurityElementsecurityElement);
[C++]
public: void FromXml(SecurityElement* securityElement);
[JScript]
public override function FromXml(
   securityElement : SecurityElement);

パラメータ

  • securityElement
    WebPermission を再構築するための元となる XML エンコーディング。

実装

ISecurityEncodable.FromXml

例外

例外の種類 条件
ArgumentNullException securityElement パラメータが null 参照 (Visual Basic では Nothing) です。
ArgumentException securityElement が、この種類のアクセス許可要素ではありません。

解説

FromXml メソッドは、 SecurityElement クラスで定義される XML エンコーディングから WebPermission を再構築します。

ToXml メソッドを使用して、ステータス情報を含む WebPermission を XML でエンコードします。

使用例

[Visual Basic, C#, C++] System.Security.SecurityElement を作成し、その属性を設定し、 FromXml を使用して、この情報を WebPermission のインスタンスに転送する例を次に示します。

 
' Create  a WebPermission without permission on the protected resource.
Dim myWebPermission1 As New WebPermission(PermissionState.None)

' Create a SecurityElement by calling the ToXml method on the WebPermission 
' instance and display its attributes (which hold the XML encoding of 
' the WebPermission).
Console.WriteLine("Attributes and Values of the WebPermission are :")
myWebPermission1.ToXml().ToString()

' Create another WebPermission with no permission on the protected resource.
Dim myWebPermission2 As New WebPermission(PermissionState.None)

'Converts the new WebPermission from XML using myWebPermission1.
myWebPermission2.FromXml(myWebPermission1.ToXml())


[C#] 

    // Create  a WebPermission without permission on the protected resource.
    WebPermission myWebPermission1 = new WebPermission(PermissionState.None);

    // Create a SecurityElement by calling the ToXml method on the WebPermission 
    // instance and display its attributes (which hold the XML encoding of 
    // the WebPermission).
    Console.WriteLine("Attributes and Values of the WebPermission are :");
    myWebPermission1.ToXml().ToString();

    // Create another WebPermission with no permission on the protected resource.
    WebPermission myWebPermission2 = new WebPermission(PermissionState.None);

    //Converts the new WebPermission from XML using myWebPermission1.
    myWebPermission2.FromXml(myWebPermission1.ToXml());


[C++] 
// Create  a WebPermission without permission on the protected resource
   WebPermission* myWebPermission1 =
   new WebPermission(PermissionState::None);

// Create a SecurityElement by calling the ToXml method on the WebPermission
// instance and display its attributes (which hold the XML encoding of
// the WebPermission).
Console::WriteLine(S"Attributes and Values of the WebPermission are :");
myWebPermission1->ToXml();

// Create another WebPermission with no permission on the protected resource
   WebPermission* myWebPermission2 =
   new WebPermission(PermissionState::None);

//Converts the new WebPermission from XML using myWebPermission1.
myWebPermission2->FromXml(myWebPermission1->ToXml());

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, Common Language Infrastructure (CLI) Standard

参照

WebPermission クラス | WebPermission メンバ | System.Net 名前空間 | ToXml