Encog.Util.HTTP.FormUtility.GetBoundary C# (CSharp) 메소드

GetBoundary() 공개 정적인 메소드

Generate a boundary for a multipart form.
public static GetBoundary ( ) : String
리턴 String
        public static String GetBoundary()
        {
            return "---------------------------" + RandomString() + RandomString()
                   + RandomString();
        }