MonobjcMonobjc Documented Class Library
SetHTTPBodyStream Method (inputStream)
NamespacesMonobjc.FoundationNSMutableURLRequestSetHTTPBodyStream(NSInputStream)

Sets the request body of the receiver to the contents of a specified input stream.

Original signature is '- (void)setHTTPBodyStream:(NSInputStream *)inputStream'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void SetHTTPBodyStream(
	NSInputStream inputStream
)
Public Overridable Sub SetHTTPBodyStream ( _
	inputStream As NSInputStream _
)
public:
virtual void SetHTTPBodyStream(
	NSInputStream^ inputStream
)
Parameters
inputStream (NSInputStream)
The input stream that will be the request body of the receiver. The entire contents of the stream will be sent as the body, as in an HTTP POST request. The inputStream should be unopened and the receiver will take over as the stream’s delegate.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)