Číst v angličtině

Sdílet prostřednictvím


ParameterAttributes Výčet

Definice

Definuje atributy, které lze přidružit k parametru. Jsou definovány v CorHdr.h.

Tento výčet podporuje bitové kombinace hodnot jeho členů.

C#
[System.Flags]
public enum ParameterAttributes
C#
[System.Flags]
[System.Serializable]
public enum ParameterAttributes
C#
[System.Flags]
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum ParameterAttributes
Dědičnost
ParameterAttributes
Atributy

Pole

Name Hodnota Description
HasDefault 4096

Určuje, že parametr má výchozí hodnotu.

HasFieldMarshal 8192

Určuje, že parametr obsahuje informace o zařazování polí.

In 1

Určuje, že parametr je vstupním parametrem.

Lcid 4

Určuje, že parametr je identifikátor národního prostředí (lcid).

None 0

Určuje, že neexistuje žádný atribut parametru.

Optional 16

Určuje, že parametr je volitelný.

Out 2

Určuje, že parametr je výstupní parametr.

Reserved3 16384

Vyhrazeno.

Reserved4 32768

Vyhrazeno.

ReservedMask 61440

Určuje, že parametr je rezervovaný.

Retval 8

Určuje, že parametr je návratová hodnota.

Příklady

Následující příklad zobrazuje atributy zadaného parametru.

C#
using System;
using System.Reflection;

class paramatt
{
    public static void mymethod (string str1, out string str2, ref string str3)
    {
        str2 = "string";
    }

    public static int Main(string[] args)
    {
        Console.WriteLine("\nReflection.ParameterAttributes");

        // Get the Type and the method.

        Type Mytype = Type.GetType("paramatt");
        MethodBase Mymethodbase = Mytype.GetMethod("mymethod");

        // Display the method.
        Console.Write("\nMymethodbase = " + Mymethodbase);

        // Get the ParameterInfo array.
        ParameterInfo[] Myarray = Mymethodbase.GetParameters();

        // Get and display the attributes for the second parameter.
        ParameterAttributes Myparamattributes = Myarray[1].Attributes;

        Console.Write("\nFor the second parameter:\nMyparamattributes = "
            + (int) Myparamattributes
            + ", which is an "
            + Myparamattributes.ToString());

        return 0;
    }
}

Poznámky

Pokud chcete získat ParameterAttributes hodnotu, nejprve získejte hodnotu Type. Z pole Typezískejte ParameterInfo pole. Hodnota ParameterAttributes je uvnitř pole.

Tyto hodnoty enumerátoru jsou závislé na volitelných metadatech. Ne všechny atributy jsou dostupné ze všech kompilátorů. Projděte si příslušné pokyny kompilátoru, abyste zjistili, které výčtové hodnoty jsou k dispozici.

Platí pro