UpdateAttribute 类

指定 DomainService 方法为更新方法。

命名空间: System.ServiceModel.DomainServices.Server
程序集: System.ServiceModel.DomainServices.Server(在 system.servicemodel.domainservices.server.dll 中)

用法

用法
Dim instance As UpdateAttribute

语法

声明
<AttributeUsageAttribute(AttributeTargets.Method Or AttributeTargets.Property Or AttributeTargets.Field, AllowMultiple:=False, Inherited:=True)> _
Public NotInheritable Class UpdateAttribute
    Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Field, AllowMultiple=false, Inherited=true)] 
public sealed class UpdateAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Method|AttributeTargets::Property|AttributeTargets::Field, AllowMultiple=false, Inherited=true)] 
public ref class UpdateAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Field, AllowMultiple=false, Inherited=true) */ 
public final class UpdateAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Field, AllowMultiple=false, Inherited=true) 
public final class UpdateAttribute extends Attribute

备注

UpdateAttribute 特性应用到某个方法以指示该方法是更新方法,或为该更新方法指定某些值。如果您的方法与某个更新方法的预期方法签名匹配,则不必应用 UpdateAttribute。RIA Services 框架将推断应将带有预期更新签名的方法视为更新。您可以对某方法应用 IgnoreAttribute 以防止 RIA Services 框架为该方法生成域操作。

下面演示了更新方法的预期签名:

返回值

参数

实体

名称前缀

更新、更改或修改

特性

[Update] (C#)

-或-

<Update()> (Visual Basic)

示例

public void UpdateProduct(Product product) (C#)

-或-

Public Sub UpdateProduct(ByVal product As Product) (Visual Basic)

UsingCustomMethod 属性设置为 true 以指示该更新方法就是命名更新方法。在需要添加不遵循简单修改模式的自定义操作时,可使用命名更新方法。

下面演示了命名更新方法的预期签名:

返回值

参数

实体

其他参数的任意数量

名称前缀

任何不是以 Insert、Update 或 Delete 的前缀开头的名称

特性

[Update(UsingCustomMethod=true] (C#)

-或-

<Update(UsingCustomMethod:=True)> (Visual Basic)

示例

[Update(UsingCustomMethod=true]

public void DiscountProduct(Product product, int percentage) (C#)

-或-

<Update(UsingCustomMethod:=True)> _

Public Sub DiscountProduct(ByVal product As Product, ByVal percentage As Integer) (Visual Basic)

继承层次结构

System.Object
   System.Attribute
    System.ServiceModel.DomainServices.Server.UpdateAttribute

线程安全

此类型的任何公共静态(在 Visual Basic 中为 共享)成员都是线程安全的。不保证所有实例成员都是线程安全的。

平台

开发平台

Windows XP Home Edition, Windows XP Professional, Windows Server 2003 、Windows Server 2008 和 Windows 2000

目标平台

另请参见

参考

UpdateAttribute 成员
System.ServiceModel.DomainServices.Server 命名空间