ForumClientCore.NetworkLayer.ClientNetworkAdaptor.GetReplies C# (CSharp) 메소드

GetReplies() 개인적인 메소드

Get a Post using its PostKey
private GetReplies ( Postkey postkey ) : ForumShared.SharedDataTypes.Post[]
postkey Postkey A post key consisting of the user + timestamp
리턴 ForumShared.SharedDataTypes.Post[]
        internal Post[] GetReplies(Postkey postkey)
        {
            try
            {
                return webService.GetReplies(postkey);
            }
            catch (System.Exception e)
            {
                throw e;
            }
        }