C# Class Microsoft.Legal.MatterCenter.Models.ContentCheckDetails

Provides the structure required for performing content check.
Datei anzeigen Open project: Microsoft/mattercenter Class Usage Examples

Public Methods

Method Description
ContentCheckDetails ( string fileName, long fileSize ) : System

Two-parameters constructor to initialize object for checking if document exists with the same file name and size

ContentCheckDetails ( string fileName, string subject, long fileSize, string fromField, string sentDate ) : System

Four-parameters constructor to initialize object for checking if mail exists with the same file name, size, from field and sent date

Method Details

ContentCheckDetails() public method

Two-parameters constructor to initialize object for checking if document exists with the same file name and size
public ContentCheckDetails ( string fileName, long fileSize ) : System
fileName string Name of the file being uploaded
fileSize long Size of the file being uploaded
return System

ContentCheckDetails() public method

Four-parameters constructor to initialize object for checking if mail exists with the same file name, size, from field and sent date
public ContentCheckDetails ( string fileName, string subject, long fileSize, string fromField, string sentDate ) : System
fileName string Name of the mail being uploaded
subject string
fileSize long Size of the mail being uploaded
fromField string Value in the From field of the mail being uploaded
sentDate string Sent date of the mail being uploaded
return System