Hyves.Service.Core.HyvesRequest.HyvesRequest C# (CSharp) Method

HyvesRequest() public method

Creates an new instance of a request with the specified session.
public HyvesRequest ( HyvesSession session ) : System
session HyvesSession The session to use to issue the request.
return System
    public HyvesRequest(HyvesSession session)
    {
      if (session == null)
      {
        throw new ArgumentNullException("session");
      }

      this.session = session;
      parameters = new HyvesRequestParameterList();
    }