DekGenius.com
[ Team LiB ] Previous Section Next Section

MimeTextMatch

System.Web.Services.Description (system.web.services.dll)sealed class

This class represents a text pattern that will be searched for in the HTTP transmission. Type specifies the MIME type of the message, Pattern specifies the pattern, and Repeats sets the number of times the search will be performed (the default is 1, but you can specify System.Int32.MaxValue to get all matches).

public sealed class MimeTextMatch {
// Public Constructors
   public MimeTextMatch( );
// Public Instance Properties
   public int Capture{set; get; }
   public int Group{set; get; }
   public bool IgnoreCase{set; get; }
   public MimeTextMatchCollection Matches{get; }
   public string Name{set; get; }
   public string Pattern{set; get; }
   public int Repeats{set; get; }
   public string RepeatsString{set; get; }
   public string Type{set; get; }
}

Returned By

MimeTextMatchCollection.this

Passed To

MimeTextMatchCollection.{Add( ), Contains( ), CopyTo( ), IndexOf( ), Insert( ), Remove( ), this}

    [ Team LiB ] Previous Section Next Section