AdomdParameter.Value 속성
Gets or sets the value of the parameter.
네임스페이스: Microsoft.AnalysisServices.AdomdServer
어셈블리: msmgdsrv(msmgdsrv.dll)
구문
‘선언
Public Property Value As Object
Get
Set
‘사용 방법
Dim instance As AdomdParameter
Dim value As Object
value = instance.Value
instance.Value = value
public Object Value { get; set; }
public:
virtual property Object^ Value {
Object^ get () sealed;
void set (Object^ value) sealed;
}
abstract Value : Object with get, set
override Value : Object with get, set
final function get Value () : Object
final function set Value (value : Object)
속성 값
유형: System.Object
The value of the parameter.
주의
Returns an Object that is the value of the parameter. The default value is nullnull 참조(Visual Basic에서는 Nothing). When sending a nullnull 참조(Visual Basic에서는 Nothing) parameter value to the server, the user must specify DBNull, not nullnull 참조(Visual Basic에서는 Nothing). The null value in the system is an empty object that has no value. DBNull is used to represent null values.