Aqueduct.SitecoreLib.Indexing.SearchIndexer.AddGuidIndexField C# (CSharp) Метод

AddGuidIndexField() защищенный Метод

protected AddGuidIndexField ( string fieldName, System.Guid value ) : void
fieldName string
value System.Guid
Результат void
        protected void AddGuidIndexField(string fieldName, Guid value)
        {
            string parsedValue = value.StripSpecialChars();

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