ConstructOutputDelegate<T> Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Delegate for resolving outputs of a construct.
public delegate string ConstructOutputDelegate<in T>(T construct) where T : IConstruct;
type ConstructOutputDelegate<'T (requires 'T :> IConstruct)> = delegate of 'T -> string
Public Delegate Function ConstructOutputDelegate(Of In T)(construct As T) As String
Type Parameters
- T
Construct type
This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.Parameters
- construct
- T