SPFileCollection.Add Method (String, Stream, SPFileCollectionAddParameters)
Creates a file in the collection using the specified URL, a stream that contains the contents of a file, and an SPFileCollectionAddParameters object.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Available in SharePoint Online
Syntax
'Declaration
<SubsetCallableExcludeMemberAttribute(SubsetCallableExcludeMemberType.MarshalByRefObject)> _
Public Function Add ( _
urlOfFile As String, _
file As Stream, _
parameters As SPFileCollectionAddParameters _
) As SPFile
'Usage
Dim instance As SPFileCollection
Dim urlOfFile As String
Dim file As Stream
Dim parameters As SPFileCollectionAddParameters
Dim returnValue As SPFile
returnValue = instance.Add(urlOfFile, _
file, parameters)
[SubsetCallableExcludeMemberAttribute(SubsetCallableExcludeMemberType.MarshalByRefObject)]
public SPFile Add(
string urlOfFile,
Stream file,
SPFileCollectionAddParameters parameters
)
Parameters
urlOfFile
Type: System.StringThe site-relative URL of the file.
file
Type: System.IO.StreamA stream that contains the file.
parameters
Type: Microsoft.SharePoint.SPFileCollectionAddParametersAn object that encapsulates options for adding the file.
Return Value
Type: Microsoft.SharePoint.SPFile
The newly added file.