Open sandboxFocus

Constructor ManagedResourceIntroductionAspectConfiguration

ManagedResourceIntroductionAspectConfiguration(string, byte[])

Declaration
public ManagedResourceIntroductionAspectConfiguration(string name, byte[] data)
Parameters
Type Name Description
string name

Name of the managed resource.

byte[] data

Content of the managed resource.

ManagedResourceIntroductionAspectConfiguration(string, Func<byte[]>)

Initializes a new ManagedResourceIntroductionAspectConfiguration by passing a delegate for late evaluation of the resource content.

Declaration
public ManagedResourceIntroductionAspectConfiguration(string name, Func<byte[]> dataProvider)
Parameters
Type Name Description
string name

Name of the managed resource.

Func<byte[]> dataProvider

A method that returns the data to be introduced. If the method returns null, the aspect will be ignored and no managed resource will be introduced.