Azure.ContentSearch.AzureProvider.AzureSearchFieldConfiguration.SetType C# (CSharp) Method

SetType() public method

public SetType ( string type ) : void
type string
return void
        public void SetType(string type)
        {
            if (!string.IsNullOrEmpty(type))
                this.Type = Type.GetType(type);
            else
                this.Type = typeof(string);
        }