bloG statuS ..... :D
private string myBlogStatus = "InProcess";private string CheckBlogStaus(Blog myBlog)
{
string publishStatus = this.publish(myBlog);
swtch (publishStatus)
{
case("001 java.io.IOException: EOF while reading from control connection "):
myBlogStatus = "stoped";
break;
case("550 Could not open: No such file or ... "):
myBlogStatus = "attempting to publish";
break;
}
return myBlogStatus;
}
0 Comments:
Post a Comment
<< Home