File Types - SharePointPro/SpproEntity GitHub Wiki
File Types
SpproFramework will convert many different SharePoint types.
Attributes:
- File SharePoint.File will be converted to SpproFramework.Model.SpproFile
Usage:
//Entity Class
[SpproFieldAttribute(FieldType="File")]
public SpproFile FileRef { get; set; }
//Get File from Document Library
var listItem = SpContext.ListName.GetByFileName("File.docx")
listItem.FileRef.FileName //string - FileName
listItem.FileRef.Content //byte[] - file contents;