ManagedResourceIntroductionAspectConfiguration Constructor
ManagedResourceIntroductionAspectConfiguration(String, Byte[])
Initializes a new ManagedResourceIntroductionAspectConfiguration.
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 |