コード例 #1
0
ファイル: WebHandler.ashx.cs プロジェクト: pwx5507690/From
        private Tuple <string, string> GetPath()
        {
            if (TempName.IsNullOrEmpty() || TempType.IsNullOrEmpty())
            {
                return(null);
            }
            var tuple = GetPath(SiteName, TempName, TempType);

            if (tuple.IsNull())
            {
                return(null);
            }
            return(tuple);
        }