e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
32 lines
1007 B
C#
32 lines
1007 B
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace System.Activities.Statements
|
|
{
|
|
using System;
|
|
using System.Activities;
|
|
using System.Runtime;
|
|
using System.Runtime.Serialization;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Collections.Generic;
|
|
|
|
public sealed class CreateBookmarkScope : NativeActivity<BookmarkScope>
|
|
{
|
|
public CreateBookmarkScope()
|
|
{
|
|
}
|
|
|
|
protected override void CacheMetadata(NativeActivityMetadata metadata)
|
|
{
|
|
// NoOp - we override this to suppress reflection. The base class
|
|
// takes care of adding the Result argument.
|
|
}
|
|
|
|
protected override void Execute(NativeActivityContext context)
|
|
{
|
|
context.SetValue(this.Result, context.CreateBookmarkScope());
|
|
}
|
|
}
|
|
}
|