System.Web.HttpMultipart.ReadBoundary C# (CSharp) 메소드

ReadBoundary() 개인적인 메소드

private ReadBoundary ( ) : bool
리턴 bool
		bool ReadBoundary ()
		{
			try {
				string line = ReadLine ();
				while (line == "")
					line = ReadLine ();
				if (line [0] != '-' || line [1] != '-')
					return false;

				if (!StrUtils.EndsWith (line, boundary, false))
					return true;
			} catch {
			}

			return false;
		}