ReportingService2006.GetProperties(String, Property[]) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SharePoint ライブラリ内のアイテムの 1 つまたは複数のプロパティの値を返します。
public:
cli::array <ReportService2006::Property ^> ^ GetProperties(System::String ^ Item, cli::array <ReportService2006::Property ^> ^ Properties);
public ReportService2006.Property[] GetProperties (string Item, ReportService2006.Property[] Properties);
member this.GetProperties : string * ReportService2006.Property[] -> ReportService2006.Property[]
Public Function GetProperties (Item As String, Properties As Property()) As Property()
パラメーター
- Item
- String
ファイル名と拡張子を含むアイテムの完全修飾 URL、またはアイテムの ID です。
戻り値
Property[]
指定したアイテムのプロパティを表す Property オブジェクトの配列です。
例
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
class Sample
{
static void Main(string[] args)
{
ReportingService2006 rs = new ReportingService2006();
rs.Url = "http://<Server Name>" +
"/_vti_bin/ReportServer/ReportService2006.asmx";
rs.Credentials =
System.Net.CredentialCache.DefaultCredentials;
// Create the property to retrieve.
Property retrieveProp = new Property();
retrieveProp.Name = "Description";
Property[] props = new Property[1];
props[0] = retrieveProp;
try
{
Property[] properties =
rs.GetProperties("http://<Server Name>/Docs" +
"/Documents/AdventureWorks Sample Reports" +
"/Sales Order Detail.rdl", props);
foreach (Property prop in properties)
{
// Writes the description to the console.
Console.WriteLine(prop.Value);
}
}
catch (SoapException e)
{
Console.WriteLine(e.Detail.InnerXml.ToString());
}
}
}
Imports System
Imports System.IO
Imports System.Text
Imports System.Web.Services
Imports System.Web.Services.Protocols
Class Sample
Public Shared Sub Main()
Dim rs As New ReportingService2006()
rs.Url = "http://<Server Name>" + _
"/_vti_bin/ReportServer/ReportService2006.asmx"
rs.Credentials = _
System.Net.CredentialCache.DefaultCredentials
' Create the property to retrieve.
Dim retrieveProp As New [Property]()
retrieveProp.Name = "Description"
Dim props(0) As [Property]
props(0) = retrieveProp
Try
Dim properties As [Property]() = _
rs.GetProperties("http://<Server Name>/Docs" + _
"/Documents/AdventureWorks Sample Reports" + _
"/Sales Order Detail.rdl", props)
Dim prop As [Property]
For Each prop In properties
' Writes the description to the console.
Console.WriteLine(prop.Value)
Next prop
Catch e As SoapException
Console.WriteLine(e.Detail.InnerXml.ToString())
End Try
End Sub
End Class
注釈
次の表に、この操作に関連するヘッダーおよび権限の情報を示します。
SOAP ヘッダー | (In) TrustedUserHeaderValue (Out) ServerInfoHeaderValue |
必要なアクセス許可 | <xref:Microsoft.SharePoint.SPBasePermissions.ViewListItems> |
Item="/" のときは rsOperationNotSupportedSharePointMode
エラーが返されます。