BridgeTests.Tests.TestCommunicationClass.GetJsonExampleString C# (CSharp) 메소드

GetJsonExampleString() 개인적인 메소드

private GetJsonExampleString ( ) : string
리턴 string
        private string GetJsonExampleString()
        {
            BeanDescription bean = BeanDescription.CreateInstance("classname");
            RemoteMethodCall remoteMC = RemoteMethodCall.CreateInstance(
                "methodName",
                new List<Object>()
                    {
                        "Test1"
                    },
                new Dictionary<String, String>(),
                new List<String>()
                    {
                        "Classes"
                    },
                new List<String>
                    {
                    "Real"
                    });
            MethodCallMessage message = MethodCallMessage.CreateInstance("principal", bean, remoteMC, "123", false, "TestCase");
            return marshaller.MarshallObject(message);
        }