AttributeCollection.Contains Метод

Определение

Определяет, содержит ли коллекция атрибутов указанный атрибут или массив атрибутов.

Перегрузки

Contains(Attribute)

Определяет, содержит ли коллекция атрибутов указанный атрибут.

Contains(Attribute[])

Определяет, содержит ли коллекция атрибутов все указанные атрибуты в массиве атрибутов.

Contains(Attribute)

Исходный код:
AttributeCollection.cs
Исходный код:
AttributeCollection.cs
Исходный код:
AttributeCollection.cs

Определяет, содержит ли коллекция атрибутов указанный атрибут.

public:
 bool Contains(Attribute ^ attribute);
public bool Contains (Attribute attribute);
public bool Contains (Attribute? attribute);
member this.Contains : Attribute -> bool
Public Function Contains (attribute As Attribute) As Boolean

Параметры

attribute
Attribute

Элемент класса Attribute, который нужно найти в коллекции.

Возвращаемое значение

Значение true, если коллекция содержит атрибут или является атрибутом по умолчанию для этого типа атрибута; в противном случае — значение false.

Примеры

В следующем примере кода проверяется, имеет BrowsableAttribute ли коллекция значение true. Предполагается, что button1 и textBox1 были созданы в форме.

protected:
   void ContainsAttribute()
   {
      // Creates a new collection and assigns it the attributes for button1.
      AttributeCollection^ attributes;
      attributes = TypeDescriptor::GetAttributes( button1 );
      
      // Sets an Attribute to the specific attribute.
      BrowsableAttribute^ myAttribute = BrowsableAttribute::Yes;

      if ( attributes->Contains( myAttribute ) )
      {
         textBox1->Text = "button1 has a browsable attribute.";
      }
      else
      {
         textBox1->Text = "button1 does not have a browsable attribute.";
      }
   }
private void ContainsAttribute() {
    // Creates a new collection and assigns it the attributes for button1.
    AttributeCollection attributes;
    attributes = TypeDescriptor.GetAttributes(button1);

    // Sets an Attribute to the specific attribute.
    BrowsableAttribute myAttribute = BrowsableAttribute.Yes;

    if (attributes.Contains(myAttribute))
       textBox1.Text = "button1 has a browsable attribute.";
    else
       textBox1.Text = "button1 does not have a browsable attribute.";
 }
Private Sub ContainsAttribute
    ' Creates a new collection and assigns it the attributes for button.
    Dim attributes As AttributeCollection
    attributes = TypeDescriptor.GetAttributes(button1)

    ' Sets an Attribute to the specific attribute.
    Dim myAttribute As BrowsableAttribute = BrowsableAttribute.Yes

    If Attributes.Contains(myAttribute) Then
        textBox1.Text = "button1 has a browsable attribute."
    Else
        textBox1.Text = "button1 does not have a browsable attribute."
    End If
End Sub

Комментарии

Эта коллекция имеет указанный атрибут, если указанный тип атрибута существует в коллекции и значение указанного атрибута совпадает со значением экземпляра атрибута в коллекции.

Разница между методами и Contains заключается в MatchesMatch том, что Matches вызывает метод для атрибута Equals и Contains вызывает метод .

Для большинства атрибутов эти методы выполняют то же самое. Однако для атрибутов, которые могут иметь несколько флагов, обычно реализуется таким образом, Match чтобы он возвращал true , если какой-либо из флагов удовлетворяет. Например, рассмотрим атрибут привязки данных с логическими флагами SupportsSql, SupportsOleDb и SupportsXml. Этот атрибут может присутствовать в свойстве, которое поддерживает все три подхода к привязке данных. Часто бывает так, что программисту необходимо знать, только если доступен конкретный подход, а не все три. Таким образом, программист может использовать Match с экземпляром атрибута , содержащим только нужные программисту флаги.

См. также раздел

Применяется к

Contains(Attribute[])

Исходный код:
AttributeCollection.cs
Исходный код:
AttributeCollection.cs
Исходный код:
AttributeCollection.cs

Определяет, содержит ли коллекция атрибутов все указанные атрибуты в массиве атрибутов.

public:
 bool Contains(cli::array <Attribute ^> ^ attributes);
public bool Contains (Attribute[] attributes);
public bool Contains (Attribute[]? attributes);
member this.Contains : Attribute[] -> bool
Public Function Contains (attributes As Attribute()) As Boolean

Параметры

attributes
Attribute[]

Массив элементов типа Attribute, которые нужно найти в коллекции.

Возвращаемое значение

Значение true, если коллекция содержит все атрибуты; в противном случае — значение false.

Примеры

В следующем примере кода сравниваются атрибуты в button1 и textBox1 , чтобы узнать, содержатся ли атрибуты для кнопки в атрибутах текстового поля. Предполагается, что в форме были созданы и button1textBox1 .

private:
   void ContainsAttributes()
   {
      // Creates a new collection and assigns it the attributes for button1.
      AttributeCollection^ myCollection;
      myCollection = TypeDescriptor::GetAttributes( button1 );
      
      // Checks to see whether the attributes in myCollection are the attributes for textBox1.
      array<Attribute^>^ myAttrArray = gcnew array<Attribute^>(100);
      TypeDescriptor::GetAttributes( textBox1 )->CopyTo( myAttrArray, 0 );
      if ( myCollection->Contains( myAttrArray ) )
      {
         textBox1->Text = "Both the button and text box have the same attributes.";
      }
      else
      {
         textBox1->Text = "The button and the text box do not have the same attributes.";
      }
   }
private void ContainsAttributes() {
   // Creates a new collection and assigns it the attributes for button1.
   AttributeCollection myCollection;
   myCollection = TypeDescriptor.GetAttributes(button1);

   // Checks to see whether the attributes in myCollection are the attributes for textBox1.
   Attribute[] myAttrArray = new Attribute[100];
   TypeDescriptor.GetAttributes(textBox1).CopyTo(myAttrArray, 0);
   if (myCollection.Contains(myAttrArray))
      textBox1.Text = "Both the button and text box have the same attributes.";
   else
      textBox1.Text = "The button and the text box do not have the same attributes.";
}
Private Sub ContainsAttributes()
    ' Creates a new collection and assigns it the attributes for button1.
    Dim myCollection As AttributeCollection
    myCollection = TypeDescriptor.GetAttributes(button1)
      
    ' Checks to see whether the attributes in myCollection are the attributes for textBox1.
    Dim myAttrArray(100) As Attribute
    TypeDescriptor.GetAttributes(textBox1).CopyTo(myAttrArray, 0)
    If myCollection.Contains(myAttrArray) Then
        textBox1.Text = "Both the button and text box have the same attributes."
    Else
        textBox1.Text = "The button and the text box do not have the same attributes."
    End If
End Sub

Комментарии

Эта коллекция содержит указанный массив атрибутов, если все указанные типы атрибутов существуют в коллекции и если каждый атрибут в указанном массиве совпадает с атрибутом в коллекции.

См. также раздел

Применяется к