SqlUserDefinedAggregateAttribute.Format Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The serialization format as a Format.
public Microsoft.Data.SqlClient.Server.Format Format { get; }
member this.Format : Microsoft.Data.SqlClient.Server.Format
Public ReadOnly Property Format As Format
Property Value
A Format representing the serialization format.
Examples
// using Microsoft.Data.SqlClient.Server;
[SqlUserDefinedAggregate(Format.Native)]
public class SampleAggregate
{
//...
}