Databases Reference
In-Depth Information
VB.NET
Public Function GetPermissions(ByVal Item As String) As String()
GetPolicies
GetPolicies returns an array of Policy objects that are associated with a particular item as well as a
Boolean value indicating whether the item inherits those policies from its parent.
C#
public Policy[] GetPolicies(string Item , [out] ref bool InheritParent );
VB.NET
Public Function GetPolicies(ByVal Item As String , [out] ByRef InheritParent As
Boolean) As Policy()
GetProperties
GetProperties returns property values for a particular report object. You need to pass in an array of
Property objects with names initialized, and the method returns those objects with their values set.
C#
public Property[] GetProperties(string Item , Property[] Properties );
VB.NET
Public Function GetProperties(ByVal Item As String, ByVal Properties As Property())
As Property()
GetRenderResource
GetRenderResource returns the resource for a specified rendering extension format. It requires that
you pass in the format to use for processing device-specific information and the MIME-type of the
resource. It returns the resource as a base-64 encoded byte array.
C#
public byte[] GetRenderResource(string Format , string DeviceInfo ,[out] string
MimeType );
VB.NET
Public Sub GetRenderResource(ByVal Format As String, ByVal DeviceInfo As String,
[out] ByRef MimeType As String) as Byte()
GetReportDefinition
This method retrieves the report definition for a report in base-64-encoded byte format. It can then be
converted into Report Definition Language for use in tools such as Visual Studio.
Search WWH ::




Custom Search