예제 #1
0
        public bool AnswerExists(int questionid, string answertext)
        {
            bool result;

            client = new SQSAdminServiceClient();
            client.Endpoint.Address = new System.ServiceModel.EndpointAddress(CommonVariables.WcfEndpoint);
            result = client.SQSAdmin_StudioM_IsAnswerExists(questionid, answertext);
            client.Close();
            return(result);
        }