XmlDsigBase64Transform.GetOutput Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce l'output dell'oggetto XmlDsigBase64Transform corrente.
Overload
GetOutput() |
Restituisce l'output dell'oggetto XmlDsigBase64Transform corrente. |
GetOutput(Type) |
Restituisce l'output dell'oggetto XmlDsigBase64Transform corrente di tipo Stream. |
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
Restituisce l'output dell'oggetto XmlDsigBase64Transform corrente.
public:
override System::Object ^ GetOutput();
public override object GetOutput();
override this.GetOutput : unit -> obj
Public Overrides Function GetOutput () As Object
Restituisce
Output dell'oggetto XmlDsigBase64Transform corrente.
Esempio
Nell'esempio di codice seguente viene illustrato l'utilizzo del GetOutput metodo per recuperare l'output dell'oggetto corrente XmlDsigBase64Transform . Questo esempio di codice fa parte di un esempio più ampio fornito per la XmlDsigBase64Transform classe .
Object^ outputObject = xmlTransform->GetOutput();
object outputObject = xmlTransform.GetOutput();
Dim outputObject As Object = xmlTransform.GetOutput()
Commenti
Il tipo dell'oggetto restituito deve essere Stream.
Si applica a
.NET 10 (package-provided) e altre versioni
Prodotto | Versioni |
---|---|
.NET | 8 (package-provided), 9 (package-provided), 10 (package-provided) |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0 (package-provided) |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9, 10 |
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
- Origine:
- XmlDsigBase64Transform.cs
Restituisce l'output dell'oggetto XmlDsigBase64Transform corrente di tipo Stream.
public:
override System::Object ^ GetOutput(Type ^ type);
public override object GetOutput(Type type);
override this.GetOutput : Type -> obj
Public Overrides Function GetOutput (type As Type) As Object
Parametri
Restituisce
Output dell'oggetto XmlDsigBase64Transform corrente di tipo Stream.
Eccezioni
Il parametro type
non è un oggetto Stream.
Esempio
Nell'esempio di codice seguente viene illustrato come utilizzare il GetOutput metodo per recuperare l'output dell'oggetto corrente XmlDsigBase64Transform . Questo esempio di codice fa parte di un esempio più ampio fornito per la XmlDsigBase64Transform classe .
Type^ streamType = Stream::typeid;
CryptoStream^ outputStream =
(CryptoStream^)(xmlTransform->GetOutput(
streamType));
Type streamType = typeof(System.IO.Stream);
CryptoStream outputStream = (CryptoStream)
xmlTransform.GetOutput(streamType);
Dim streamType As Type = GetType(System.IO.Stream)
Dim outputStream As CryptoStream
outputStream = CType( _
xmlTransform.GetOutput(streamType), _
CryptoStream)
Commenti
Il tipo dell'oggetto restituito deve essere Stream.
Si applica a
.NET 10 (package-provided) e altre versioni
Prodotto | Versioni |
---|---|
.NET | 8 (package-provided), 9 (package-provided), 10 (package-provided) |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0 (package-provided) |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9, 10 |
Feedback su .NET
.NET è un progetto di open source. Selezionare un collegamento per fornire feedback: