MultipartFormDataContent.Add

Add(Content)

Add the content to the MultipartFormDataContent class

public override void Add(Content content)
ParameterTypeDescription
contentContentThe content.

See Also


Add(Content, string)

Add the content to the MultipartFormDataContent class with field name parameter

public void Add(Content content, string name)
ParameterTypeDescription
contentContentThe content.
nameStringThe field name.

See Also


Add(Content, string, string)

Add the content to the MultipartFormDataContent class with field and file name parameter

public void Add(Content content, string name, string fileName)
ParameterTypeDescription
contentContentThe content.
nameStringThe field name.
fileNameStringThe file name.

See Also