-
Notifications
You must be signed in to change notification settings - Fork 1
File Types
Michael edited this page Aug 7, 2017
·
2 revisions
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;