The parameter that is used to insert document data into the database for insert operations
            %%.
            An SQL parameter is used like a variable identifier and should appear in relevant queries. MSSQL parameters should begin with
            the '@' symbol.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public ReadOnly Property SqlImageDataParameter As String
             
        
            
            'Usage
 
Dim instance As MarkupSqlImageDataProvider
Dim value As String
 
value = instance.SqlImageDataParameter
             
        
            
            public string SqlImageDataParameter {get;}
             
        
            
            public: __property string* get_SqlImageDataParameter();
             
        
            
            public:
property String^ SqlImageDataParameter {
   String^ get();
}
             
        
             
        
            
            
             
            
            
            
            
            
            Example
"@imageData"
            
            
            
            
            
            See Also