XmlFormatExtensionAttribute.ExtensionPoints 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서비스 설명 형식 확장이 실행될 단계입니다.
public:
property cli::array <Type ^> ^ ExtensionPoints { cli::array <Type ^> ^ get(); void set(cli::array <Type ^> ^ value); };
public Type[] ExtensionPoints { get; set; }
member this.ExtensionPoints : Type[] with get, set
Public Property ExtensionPoints As Type()
속성 값
- Type[]
서비스 설명 형식 확장이 실행될 단계를 지정하는 Type의 배열입니다.
예제
// The YMLOperationBinding class is part of the YML SDFE, as it is the
// class that is serialized into XML and is placed in the service
// description.
[XmlFormatExtension("action", YMLOperationBinding.YMLNamespace,
typeof(OperationBinding))]
[XmlFormatExtensionPrefix("yml", YMLOperationBinding.YMLNamespace)]
public class YMLOperationBinding : ServiceDescriptionFormatExtension
{
private Boolean reverse;
public const string YMLNamespace = "http://www.contoso.com/yml";
[XmlElement("Reverse")]
public Boolean Reverse
{
get { return reverse; }
set { reverse = value; }
}
}
' The YMLOperationBinding class is part of the YML SDFE, as it is the
' class that is serialized into XML and is placed in the service
' description.
<XmlFormatExtension("action", YMLOperationBinding.YMLNamespace, _
GetType(OperationBinding)), _
XmlFormatExtensionPrefix("yml", YMLOperationBinding.YMLNamespace)> _
Public Class YMLOperationBinding
Inherits ServiceDescriptionFormatExtension
Private _reverse As Boolean
Public Const YMLNamespace As String = "http://www.contoso.com/yml"
<XmlElement("Reverse")> _
Public Property Reverse() As Boolean
Get
Return _reverse
End Get
Set(ByVal Value As Boolean)
_reverse = Value
End Set
End Property
End Class
설명
서비스 설명 형식 확장을 실행할 수 있는 사용 가능한 형식 목록에는 asp 및 웹 서버에 구성 된 모든 사용자 지정 형식 포함 됩니다. 서비스 설명 형식 확장을 사용 하 여 실행할 수 있는 ASP.NET 기본 제공 형식은 다음 목록의 다음과 같습니다.
이러한 클래스는 모두 섹션 서비스 설명, ASP.NET에서 생성 되는를 참조 하십시오.