Udostępnij za pośrednictwem


ContentDisposition Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy ContentDisposition.

Przeciążenia

ContentDisposition()

Inicjuje ContentDisposition nowe wystąpienie klasy o wartości Attachment.DispositionType

ContentDisposition(String)

Inicjuje ContentDisposition nowe wystąpienie klasy z określonymi informacjami o dyspozycji.

ContentDisposition()

Źródło:
ContentDisposition.cs
Źródło:
ContentDisposition.cs
Źródło:
ContentDisposition.cs

Inicjuje ContentDisposition nowe wystąpienie klasy o wartości Attachment.DispositionType

public:
 ContentDisposition();
public ContentDisposition ();
Public Sub New ()

Przykłady

W poniższym przykładzie kodu pokazano, jak wywołać ten konstruktor.

ContentDisposition^ c1 = gcnew ContentDisposition;
Console::WriteLine( c1 );
ContentDisposition c1 = new ContentDisposition();
Console.WriteLine(c1.ToString());

Uwagi

Wystąpienie zwrócone przez ten konstruktor ma właściwość ustawioną DispositionType na Attachment.

Dotyczy

ContentDisposition(String)

Źródło:
ContentDisposition.cs
Źródło:
ContentDisposition.cs
Źródło:
ContentDisposition.cs

Inicjuje ContentDisposition nowe wystąpienie klasy z określonymi informacjami o dyspozycji.

public:
 ContentDisposition(System::String ^ disposition);
public ContentDisposition (string disposition);
new System.Net.Mime.ContentDisposition : string -> System.Net.Mime.ContentDisposition
Public Sub New (disposition As String)

Parametry

disposition
String

DispositionTypeNames Wartość zawierająca dyspozycję.

Wyjątki

disposition jest null lub równe Empty ("").

Przykłady

W poniższym przykładzie kodu pokazano, jak wywołać ten konstruktor.

ContentDisposition^ c2 = gcnew ContentDisposition( L"attachment" );
Console::WriteLine( c2 );
ContentDisposition c2 = new ContentDisposition("attachment");
Console.WriteLine(c2.ToString());

Dotyczy