ServerPropertyCollection.Contains Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Contains(ServerProperty) |
Determines whether the specified ServerProperty exists in the collection. |
Contains(String) |
Determines whether a ServerProperty with the specified Name exists in the collection. |
Contains(ServerProperty)
Determines whether the specified ServerProperty exists in the collection.
public bool Contains (Microsoft.AnalysisServices.ServerProperty item);
member this.Contains : Microsoft.AnalysisServices.ServerProperty -> bool
Public Function Contains (item As ServerProperty) As Boolean
Parameters
- item
- ServerProperty
The ServerProperty whose existence is checked.
Returns
True, if the specified ServerProperty is found in the collection; otherwise, false.
Applies to
Contains(String)
Determines whether a ServerProperty with the specified Name exists in the collection.
public bool Contains (string name);
member this.Contains : string -> bool
Public Function Contains (name As String) As Boolean
Parameters
- name
- String
The Name of the ServerProperty whose existence is checked.
Returns
True, if a ServerProperty with the specified Name is found in the collection; otherwise, false.