CSharpUtils.Http.MultipartDecoder.Part.ToString C# (CSharp) Метод

ToString() публичный Метод

public ToString ( ) : string
Результат string
			public override string ToString()
			{
				return String.Format(
					"MultipartDecoder.Part(Name='{0}'; Content-Type='{1}', IsFile='{2}', TempFilePath='{3}')",
					Name,
					ContentType,
					IsFile,
					TempFilePath
				);
			}
		}
MultipartDecoder.Part