reference.cs
来自「< SQL Server2005程序设计>」· CS 代码 · 共 1,235 行 · 第 1/5 页
CS
1,235 行
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices/Get" +
"RenderResource", RequestNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", ResponseNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
[return: System.Xml.Serialization.XmlElementAttribute("Result", DataType="base64Binary")]
public byte[] GetRenderResource(string Format, string DeviceInfo, out string MimeType) {
object[] results = this.Invoke("GetRenderResource", new object[] {
Format,
DeviceInfo});
MimeType = ((string)(results[1]));
return ((byte[])(results[0]));
}
/// <remarks/>
public void GetRenderResourceAsync(string Format, string DeviceInfo) {
this.GetRenderResourceAsync(Format, DeviceInfo, null);
}
/// <remarks/>
public void GetRenderResourceAsync(string Format, string DeviceInfo, object userState) {
if ((this.GetRenderResourceOperationCompleted == null)) {
this.GetRenderResourceOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetRenderResourceOperationCompleted);
}
this.InvokeAsync("GetRenderResource", new object[] {
Format,
DeviceInfo}, this.GetRenderResourceOperationCompleted, userState);
}
private void OnGetRenderResourceOperationCompleted(object arg) {
if ((this.GetRenderResourceCompleted != null)) {
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
this.GetRenderResourceCompleted(this, new GetRenderResourceCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapHeaderAttribute("ServerInfoHeaderValue", Direction=System.Web.Services.Protocols.SoapHeaderDirection.Out)]
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices/Lis" +
"tRenderingExtensions", RequestNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", ResponseNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
[return: System.Xml.Serialization.XmlArrayAttribute("Extensions")]
public Extension[] ListRenderingExtensions() {
object[] results = this.Invoke("ListRenderingExtensions", new object[0]);
return ((Extension[])(results[0]));
}
/// <remarks/>
public void ListRenderingExtensionsAsync() {
this.ListRenderingExtensionsAsync(null);
}
/// <remarks/>
public void ListRenderingExtensionsAsync(object userState) {
if ((this.ListRenderingExtensionsOperationCompleted == null)) {
this.ListRenderingExtensionsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnListRenderingExtensionsOperationCompleted);
}
this.InvokeAsync("ListRenderingExtensions", new object[0], this.ListRenderingExtensionsOperationCompleted, userState);
}
private void OnListRenderingExtensionsOperationCompleted(object arg) {
if ((this.ListRenderingExtensionsCompleted != null)) {
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
this.ListRenderingExtensionsCompleted(this, new ListRenderingExtensionsCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapHeaderAttribute("ServerInfoHeaderValue", Direction=System.Web.Services.Protocols.SoapHeaderDirection.Out)]
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices/Log" +
"onUser", RequestNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", ResponseNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public void LogonUser(string userName, string password, string authority) {
this.Invoke("LogonUser", new object[] {
userName,
password,
authority});
}
/// <remarks/>
public void LogonUserAsync(string userName, string password, string authority) {
this.LogonUserAsync(userName, password, authority, null);
}
/// <remarks/>
public void LogonUserAsync(string userName, string password, string authority, object userState) {
if ((this.LogonUserOperationCompleted == null)) {
this.LogonUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OnLogonUserOperationCompleted);
}
this.InvokeAsync("LogonUser", new object[] {
userName,
password,
authority}, this.LogonUserOperationCompleted, userState);
}
private void OnLogonUserOperationCompleted(object arg) {
if ((this.LogonUserCompleted != null)) {
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
this.LogonUserCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
}
}
/// <remarks/>
[System.Web.Services.Protocols.SoapHeaderAttribute("ServerInfoHeaderValue", Direction=System.Web.Services.Protocols.SoapHeaderDirection.Out)]
[System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices/Log" +
"off", RequestNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", ResponseNamespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
public void Logoff() {
this.Invoke("Logoff", new object[0]);
}
/// <remarks/>
public void LogoffAsync() {
this.LogoffAsync(null);
}
/// <remarks/>
public void LogoffAsync(object userState) {
if ((this.LogoffOperationCompleted == null)) {
this.LogoffOperationCompleted = new System.Threading.SendOrPostCallback(this.OnLogoffOperationCompleted);
}
this.InvokeAsync("Logoff", new object[0], this.LogoffOperationCompleted, userState);
}
private void OnLogoffOperationCompleted(object arg) {
if ((this.LogoffCompleted != null)) {
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
this.LogoffCompleted(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
}
}
/// <remarks/>
public new void CancelAsync(object userState) {
base.CancelAsync(userState);
}
private bool IsLocalFileSystemWebService(string url) {
if (((url == null)
|| (url == string.Empty))) {
return false;
}
System.Uri wsUri = new System.Uri(url);
if (((wsUri.Port >= 1024)
&& (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
return true;
}
return false;
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.42")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices", IsNullable=false)]
public partial class ServerInfoHeader : System.Web.Services.Protocols.SoapHeader {
private string reportServerVersionNumberField;
private string reportServerEditionField;
private string reportServerVersionField;
private string reportServerDateTimeField;
private System.Xml.XmlAttribute[] anyAttrField;
/// <remarks/>
public string ReportServerVersionNumber {
get {
return this.reportServerVersionNumberField;
}
set {
this.reportServerVersionNumberField = value;
}
}
/// <remarks/>
public string ReportServerEdition {
get {
return this.reportServerEditionField;
}
set {
this.reportServerEditionField = value;
}
}
/// <remarks/>
public string ReportServerVersion {
get {
return this.reportServerVersionField;
}
set {
this.reportServerVersionField = value;
}
}
/// <remarks/>
public string ReportServerDateTime {
get {
return this.reportServerDateTimeField;
}
set {
this.reportServerDateTimeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr {
get {
return this.anyAttrField;
}
set {
this.anyAttrField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.42")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://schemas.microsoft.com/sqlserver/2005/06/30/reporting/reportingservices")]
public partial class Extension {
private ExtensionTypeEnum extensionTypeField;
private string nameField;
private string localizedNameField;
private bool visibleField;
private bool isModelGenerationSupportedField;
/// <remarks/>
public ExtensionTypeEnum ExtensionType {
get {
return this.extensionTypeField;
}
set {
this.extensionTypeField = value;
}
}
/// <remarks/>
public string Name {
get {
return this.nameField;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?