Plan1.Controllers.DHBlobController.GetFname C# (CSharp) Method

GetFname() public method

public GetFname ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult GetFname()
        {
            return View();
        }

Same methods

DHBlobController::GetFname ( System.Web.HttpPostedFileBase file, string conatinerId ) : System.Web.Mvc.ActionResult

Usage Example

コード例 #1
0
 public void DataTest58()
 {
     DHBlobController target = new DHBlobController(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.GetFname();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
All Usage Examples Of Plan1.Controllers.DHBlobController::GetFname