共用方式為


MemberProperty 類別

Represents a single member property for a given member.

繼承階層

System.Object
  Microsoft.AnalysisServices.AdomdClient.MemberProperty

命名空間:  Microsoft.AnalysisServices.AdomdClient
組件:  Microsoft.AnalysisServices.AdomdClient (在 Microsoft.AnalysisServices.AdomdClient.dll 中)

語法

'宣告
Public NotInheritable Class MemberProperty
'用途
Dim instance As MemberProperty
public sealed class MemberProperty
public ref class MemberProperty sealed
[<SealedAttribute>]
type MemberProperty =  class end
public final class MemberProperty

MemberProperty 型別公開下列成員。

屬性

  名稱 說明
公用屬性 Name Gets the name of the MemberProperty.
公用屬性 UniqueName Gets the fully-qualified name of the MemberProperty.
公用屬性 Value Gets the value of the MemberProperty.

上層

方法

  名稱 說明
公用方法 Equals Determines whether two instances of MemberProperty are equal. (覆寫 Object.Equals(Object)。)
公用方法 GetHashCode Serves as a hash function for a particular type, for use in hashing algorithms and data structures such as hash tables. (覆寫 Object.GetHashCode()。)
公用方法 GetType (繼承自 Object。)
公用方法 ToString A String that contains the name of the MemberProperty. (覆寫 Object.ToString()。)

上層

運算子

  名稱 說明
公用運算子靜態成員 Equality Determines whether two instances of MemberProperty are equal.
公用運算子靜態成員 Inequality Determines whether two instances of MemberProperty are unequal.

上層

備註

In the axis specification for a given axis in a multidimensional query, the set expression selects tuples with which to populate the axis. The cellset returns basic information about each member in each tuple, such as member name, parent level, and number of children. Members often have additional properties associated with them, referred to as member properties, which are available for all members at a given level.

The MemberProperty represents a single member property for a Member.

範例

The following subroutine, given a Member, iterates through the MemberProperties collection and displays information for each MemberProperty in the collection:

Public Sub ListMemberProperties(ByRef MemberToCheck As Member)

    ' Check the parameter before performing actions on it.
    If MemberToCheck Is Nothing Then
        Throw New System.ArgumentNullException("MemberToCheck")
    Else
        ' Iterate through the MemberProperties collection of the
        ' Member object.

        Try
            Dim propToCheck As MemberProperty

            Debug.WriteLine("Found " & _
                MemberToCheck.MemberProperties.Count & _
                " member properties in member:")

            For Each propToCheck In MemberToCheck.MemberProperties
                Debug.WriteLine("Member Property:  " & propToCheck.Name)
                Debug.WriteLine("  Value:        " & _
                    propToCheck.Value)
            Next
        Catch ex As AdomdConnectionException
            ' The connection could not be opened or was disconnected.
            ' This error can occur at any time, if the provider is 
            ' disconnected from the server.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdErrorResponseException
            ' A response is received from a provider which indicates an error.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdUnknownResponseException
            ' A response has been returned from the provider that 
            ' was not understood.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdCacheExpiredException
            ' A cached version of an ADOMD.NET object is no longer valid.
            ' This error is typically raised when reviewing metadata.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As AdomdException
            ' Any other error raised by ADOMD.NET.
            Debug.WriteLine(ex)
            Throw ex
        Catch ex As Exception
            ' Any other error.
            Debug.WriteLine(ex)
            Throw ex        End Try
    End If
End Sub

執行緒安全性

這個型別的任何公用 static (在 Visual Basic 中為 Shared) 成員都是執行緒安全的。並不是所有的執行個體成員都保證可以用於所有的執行緒。

請參閱

參考

Microsoft.AnalysisServices.AdomdClient 命名空間