本文整理汇总了C#中ScheduleDefinitionOrReference类的典型用法代码示例。如果您正苦于以下问题:C# ScheduleDefinitionOrReference类的具体用法?C# ScheduleDefinitionOrReference怎么用?C# ScheduleDefinitionOrReference使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ScheduleDefinitionOrReference类属于命名空间,在下文中一共展示了ScheduleDefinitionOrReference类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: SetReportHistoryOptionsAsync
/// <remarks/>
public void SetReportHistoryOptionsAsync(string Report, bool EnableManualSnapshotCreation, bool KeepExecutionSnapshots, ScheduleDefinitionOrReference Item) {
this.SetReportHistoryOptionsAsync(Report, EnableManualSnapshotCreation, KeepExecutionSnapshots, Item, null);
}
开发者ID:hanksjosh,项目名称:ReportTransfer,代码行数:4,代码来源:Reference.cs
示例2: SetExecutionOptionsAsync
/// <remarks/>
public void SetExecutionOptionsAsync(string Report, ExecutionSettingEnum ExecutionSetting, ScheduleDefinitionOrReference Item) {
this.SetExecutionOptionsAsync(Report, ExecutionSetting, Item, null);
}
开发者ID:hanksjosh,项目名称:ReportTransfer,代码行数:4,代码来源:Reference.cs
示例3: EndGetExecutionOptions
/// <remarks/>
public string EndGetExecutionOptions(System.IAsyncResult asyncResult, out ScheduleDefinitionOrReference Item)
{
object[] results = this.EndInvoke(asyncResult);
Item = ((ScheduleDefinitionOrReference)(results[1]));
return ((string)(results[0]));
}
开发者ID:darrenschwarz,项目名称:sqltutorials,代码行数:7,代码来源:ReportingService2010.cs
示例4: EndGetItemHistoryOptions
/// <remarks/>
public bool EndGetItemHistoryOptions(System.IAsyncResult asyncResult, out bool KeepExecutionSnapshots, out ScheduleDefinitionOrReference Item)
{
object[] results = this.EndInvoke(asyncResult);
KeepExecutionSnapshots = ((bool)(results[1]));
Item = ((ScheduleDefinitionOrReference)(results[2]));
return ((bool)(results[0]));
}
开发者ID:darrenschwarz,项目名称:sqltutorials,代码行数:8,代码来源:ReportingService2010.cs
示例5: BeginSetExecutionOptions
/// <remarks/>
public System.IAsyncResult BeginSetExecutionOptions(string ItemPath, string ExecutionSetting, ScheduleDefinitionOrReference Item, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("SetExecutionOptions", new object[] {
ItemPath,
ExecutionSetting,
Item}, callback, asyncState);
}
开发者ID:darrenschwarz,项目名称:sqltutorials,代码行数:8,代码来源:ReportingService2010.cs
示例6: BeginSetItemHistoryOptions
/// <remarks/>
public System.IAsyncResult BeginSetItemHistoryOptions(string ItemPath, bool EnableManualSnapshotCreation, bool KeepExecutionSnapshots, ScheduleDefinitionOrReference Item, System.AsyncCallback callback, object asyncState)
{
return this.BeginInvoke("SetItemHistoryOptions", new object[] {
ItemPath,
EnableManualSnapshotCreation,
KeepExecutionSnapshots,
Item}, callback, asyncState);
}
开发者ID:darrenschwarz,项目名称:sqltutorials,代码行数:9,代码来源:ReportingService2010.cs
示例7: SetExecutionOptionsAsync
/// <remarks/>
public void SetExecutionOptionsAsync(string ItemPath, string ExecutionSetting, ScheduleDefinitionOrReference Item)
{
this.SetExecutionOptionsAsync(ItemPath, ExecutionSetting, Item, null);
}
开发者ID:darrenschwarz,项目名称:sqltutorials,代码行数:5,代码来源:ReportingService2010.cs
示例8: BeginSetReportHistoryOptions
/// <remarks/>
public IAsyncResult BeginSetReportHistoryOptions(string report, bool EnableManualSnapshotCreation,
bool KeepExecutionSnapshots, ScheduleDefinitionOrReference Item,
AsyncCallback callback, object asyncState)
{
return BeginInvoke("SetReportHistoryOptions", new object[]
{
report,
EnableManualSnapshotCreation,
KeepExecutionSnapshots,
Item
}, callback, asyncState);
}
开发者ID:GorelH,项目名称:dropkick,代码行数:13,代码来源:ReportingService.cs
示例9: EndGetExecutionOptions
/// <remarks/>
public ExecutionSettingEnum EndGetExecutionOptions(IAsyncResult asyncResult,
out ScheduleDefinitionOrReference Item)
{
object[] results = EndInvoke(asyncResult);
Item = ((ScheduleDefinitionOrReference) (results[1]));
return ((ExecutionSettingEnum) (results[0]));
}
开发者ID:GorelH,项目名称:dropkick,代码行数:8,代码来源:ReportingService.cs
示例10: SetExecutionOptionsAsync
/// <remarks/>
public void SetExecutionOptionsAsync(string report, ExecutionSettingEnum ExecutionSetting,
ScheduleDefinitionOrReference Item, object userState)
{
if ((_setExecutionOptionsOperationCompleted == null))
{
_setExecutionOptionsOperationCompleted = new SendOrPostCallback(OnSetExecutionOptionsOperationCompleted);
}
InvokeAsync("SetExecutionOptions", new object[]
{
report,
ExecutionSetting,
Item
}, _setExecutionOptionsOperationCompleted, userState);
}
开发者ID:GorelH,项目名称:dropkick,代码行数:15,代码来源:ReportingService.cs
示例11: BeginSetExecutionOptions
/// <remarks/>
public IAsyncResult BeginSetExecutionOptions(string report, ExecutionSettingEnum ExecutionSetting,
ScheduleDefinitionOrReference Item, AsyncCallback callback,
object asyncState)
{
return BeginInvoke("SetExecutionOptions", new object[]
{
report,
ExecutionSetting,
Item
}, callback, asyncState);
}
开发者ID:GorelH,项目名称:dropkick,代码行数:12,代码来源:ReportingService.cs
注:本文中的ScheduleDefinitionOrReference类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论