DIFsrmClassificationEvents_OnFileEventHandler Delegate

 

Invokes the OnFile method event handler.

Namespace:   Microsoft.Storage
Assembly:  srmlib (in srmlib.dll)

Syntax

[ComVisibleAttribute(false)]
public delegate bool DIFsrmClassificationEvents_OnFileEventHandler(
    string filePath,
    int result,
    string fileMessages,
    IFsrmCollection fileProperties
)
[ComVisibleAttribute(false)]
public delegate bool DIFsrmClassificationEvents_OnFileEventHandler(
    String^ filePath,
    int result,
    String^ fileMessages,
    IFsrmCollection^ fileProperties
)
[<ComVisibleAttribute(false)>]
type DIFsrmClassificationEvents_OnFileEventHandler = 
    delegate of 
        filePath:string *
        result:int *
        fileMessages:string *
        fileProperties:IFsrmCollection -> bool
<ComVisibleAttribute(False)>
Public Delegate Function DIFsrmClassificationEvents_OnFileEventHandler (
    filePath As String,
    result As Integer,
    fileMessages As String,
    fileProperties As IFsrmCollection
) As Boolean

Parameters

  • result
    Type: System.Int32

    Return value for the specific file. If this value is an error code then the fileProperties parameter may be NULL.

  • fileMessages
    Type: System.String

    Message specific to any error.

Return Value

Type: System.Boolean

Returns a Boolean value that is TRUE if there were no errors processing the event and FALSE otherwise.

See Also

Microsoft.Storage Namespace

Return to top