XmlLicenseTransform.GetOutput Method

Definition

Returns the output of an XmlLicenseTransform object.

Overloads

GetOutput()

Returns the output of an XmlLicenseTransform object.

GetOutput(Type)

Returns the output of an XmlLicenseTransform object.

GetOutput()

Source:
XmlLicenseTransform.cs
Source:
XmlLicenseTransform.cs
Source:
XmlLicenseTransform.cs
Source:
XmlLicenseTransform.cs

Returns the output of an XmlLicenseTransform object.

public:
 override System::Object ^ GetOutput();
public override object GetOutput ();
override this.GetOutput : unit -> obj
Public Overrides Function GetOutput () As Object

Returns

The output of the XmlLicenseTransform object.

Remarks

The type of the returned object must be XmlDocument.

Applies to

GetOutput(Type)

Source:
XmlLicenseTransform.cs
Source:
XmlLicenseTransform.cs
Source:
XmlLicenseTransform.cs
Source:
XmlLicenseTransform.cs

Returns the output of an XmlLicenseTransform object.

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

Parameters

type
Type

The type of the output to return. XmlDocument is the only valid type for this parameter.

Returns

The output of the XmlLicenseTransform object.

Exceptions

The type parameter is not an XmlDocument object.

Applies to