Aqueduct.SitecoreLib.Indexing.SearchIndexer.AddGuidIndexField C# (CSharp) Method

AddGuidIndexField() protected method

protected AddGuidIndexField ( string fieldName, System.Guid value ) : void
fieldName string
value System.Guid
return void
        protected void AddGuidIndexField(string fieldName, Guid value)
        {
            string parsedValue = value.StripSpecialChars();

            _customFields.Add(CreateCustomIndexField(fieldName, parsedValue, false));
        }