public void UpdateState(string token, DoorState state)
        {
            UpdateStateRequest inValue = new UpdateStateRequest();

            inValue.Body       = new UpdateStateRequestBody();
            inValue.Body.token = token;
            inValue.Body.state = state;
            ((StateReportReceiverSoap)(this)).UpdateState(inValue);
        }
 void StateReportReceiverSoap.UpdateState(UpdateStateRequest request)
 {
     base.Channel.UpdateState(request);
 }