FormSubmitter.Submit

Submit()

Submits the form data to the server.

public SubmissionResult Submit()

Return Value

The result of the submission.

See Also


Submit(CookieContainer)

Submits the form data to the server with specified cookies.

public SubmissionResult Submit(CookieContainer cookieContainer)
ParameterTypeDescription
cookieContainerCookieContainerThe cookie container.

Return Value

The result of the submission.

See Also


Submit(ICredentials)

Submits the form data to the server with specified user credentials.

public SubmissionResult Submit(ICredentials credentials)
ParameterTypeDescription
credentialsICredentialsThe authentication information for the request.

Return Value

The result of the submission.

See Also


Submit(ICredentials, CookieContainer)

Submits the form data to the server with specified user credentials and cookies.

public SubmissionResult Submit(ICredentials credentials, CookieContainer cookieContainer)
ParameterTypeDescription
credentialsICredentialsThe authentication information for the request.
cookieContainerCookieContainerThe cookie container.

Return Value

The result of the submission.

See Also


Submit(TimeSpan)

Submits the form data to the server with specified timeout.

public SubmissionResult Submit(TimeSpan timeout)
ParameterTypeDescription
timeoutTimeSpanThe number of milliseconds to wait before the request times out.

Return Value

The result of the submission.

See Also


Submit(TimeSpan, CookieContainer)

Submits the form data to the server with specified timeout and cookies.

public SubmissionResult Submit(TimeSpan timeout, CookieContainer cookieContainer)
ParameterTypeDescription
timeoutTimeSpanThe number of milliseconds to wait before the request times out.
cookieContainerCookieContainerThe cookie container.

Return Value

The result of the submission.

See Also


Submit(ICredentials, TimeSpan)

Submits the form data to the server with specified user credentials and timeout.

public SubmissionResult Submit(ICredentials credentials, TimeSpan timeout)
ParameterTypeDescription
credentialsICredentialsThe authentication information for the request.
timeoutTimeSpanThe number of milliseconds to wait before the request times out.

Return Value

The result of the submission.

See Also


Submit(ICredentials, TimeSpan, CookieContainer)

Submits the form data to the server with specified user credentials, timeout and cookies.

public SubmissionResult Submit(ICredentials credentials, TimeSpan timeout, 
    CookieContainer cookieContainer)
ParameterTypeDescription
credentialsICredentialsThe authentication information for the request.
timeoutTimeSpanThe number of milliseconds to wait before the request times out.
cookieContainerCookieContainerThe cookie container.

Return Value

The result of the submission.

See Also


Submit(ICredentials, TimeSpan, bool)

Submits the form data to the server with specified user credentials.

public SubmissionResult Submit(ICredentials credentials, TimeSpan timeout, bool preAuthenticate)
ParameterTypeDescription
credentialsICredentialsThe authentication information for the request.
timeoutTimeSpanThe number of milliseconds to wait before the request times out.
preAuthenticateBooleanThe value that indicates whether to send an Authorization header with the request.

Return Value

The result of the submission.

See Also


Submit(ICredentials, TimeSpan, bool, CookieContainer)

Submits the form data to the server with specified user credentials and cookies.

public SubmissionResult Submit(ICredentials credentials, TimeSpan timeout, bool preAuthenticate, 
    CookieContainer cookieContainer)
ParameterTypeDescription
credentialsICredentialsThe authentication information for the request.
timeoutTimeSpanThe number of milliseconds to wait before the request times out.
preAuthenticateBooleanThe value that indicates whether to send an Authorization header with the request.
cookieContainerCookieContainerThe cookie container.

Return Value

The result of the submission.

See Also