SecurityException.Method Property

Definition

Gets or sets the information about the method associated with the exception.

public:
 property System::Reflection::MethodInfo ^ Method { System::Reflection::MethodInfo ^ get(); void set(System::Reflection::MethodInfo ^ value); };
public System.Reflection.MethodInfo? Method { get; set; }
public System.Reflection.MethodInfo Method { get; set; }
[System.Runtime.InteropServices.ComVisible(false)]
public System.Reflection.MethodInfo Method { get; set; }
member this.Method : System.Reflection.MethodInfo with get, set
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.Method : System.Reflection.MethodInfo with get, set
Public Property Method As MethodInfo

Property Value

A MethodInfo object describing the method.

Attributes

Remarks

Important

Using an instance of this object with untrusted data is a security risk. Use this object only with trusted data. For more information, see Validate All Inputs.

This property contains one of the following:

  • Information about the method that the failed assembly was executing when the security check that triggered the exception occurred.

  • Information about the method that placed either a PermitOnly or Deny security action on the call stack, in the case of a failure due to a PermitOnly or Deny.

  • null, in the case of a failure that is impossible to attribute to a specific method.

The MethodInfo object provides the method name, class name, and assembly name information that uniquely identifies the method.

Applies to