Interface ICustomAttachments
An interface to tag the client's custom attachment class.
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public interface ICustomAttachments
Methods
View SourceGetAllAttachmentMethodNames()
Gets the names of all of the attachment methods that will be displayed in the UI.
Declaration
IEnumerable<string> GetAllAttachmentMethodNames()
Returns
Type | Description |
---|---|
IEnumerable<string> | The names of all of the methods that return a path to a custom attachment. |
GetAttachmentFunction(string)
Retrieves a delegate of the specified method.
Declaration
CustomAttachmentFunction GetAttachmentFunction(string methodName)
Parameters
Type | Name | Description |
---|---|---|
string | methodName | Name of the method to retrieve. |
Returns
Type | Description |
---|---|
CustomAttachmentFunction | A CustomAttachmentFunction delegate of the specified method. |